本篇文章給大家分享的是有關(guān)如何安裝與使用protractor,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
鞏義網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項目制作,到程序開發(fā),運營維護(hù)。創(chuàng)新互聯(lián)建站成立與2013年到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)建站。
npm protractor
npm install -g protractor
npm install protractor的依賴項
基于第二步下載到的文件,在命令行里面進(jìn)入到nodejs ->protractor的目錄
npm install
test工程
包括一個簡單的angular的頁面,一個配置文件和一個測試文件
配置文件protractor_conf.js代碼:
/** * Created by Administrator on 2015/4/24. */ exports.config = { directConnect: true, // Capabilities to be passed to the webdriver instance. capabilities: { 'browserName': 'chrome' }, // Spec patterns are relative to the current working directly when // protractor is called. specs: ['test.js'], // Options to be passed to Jasmine-node. jasmineNodeOpts: { showColors: true, defaultTimeoutInterval: 30000 } };
test.js文件代碼
/** * Created by Administrator on 2015/4/24. */ describe('angularjs homepage', function () { it('should greet the named user', function () { browser.get('http://localhost:63342/protractor/Index.html'); element(by.id('userName')).sendKeys(' Sparrow'); browser.sleep(4000); }); });
Index.html的代碼
{{userName}}
以上就是如何安裝與使用protractor,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。