於nightwatch.js
chromedriver.exe
"selenium": {
"start_process": true,
"server_path": "lib/selenium-server-standalone-3.10.0.jar",
"start_session": true,
"log_path": "log/",
"host": "127.0.0.1",
"port": 4444,
"cli_args": {
"webdriver.chrome.driver": "lib/chromedriver.exe"
}
},
'tags': ['testcase1'],
tags: ['testcase1'],
'@tags': ['testcase1'],
然後呼叫的時候
node nightwatch -e chrome -a google(tag名)
utils.js
module.exprots = function (browser) {/* ... */}
other files import utils.js
const utils = require('utils')
// 錯誤示範
// import utils from '../../../pages/utils'
.setValue('#RecoverEmail', 'linao2645900@yahoo.com.tw')
.click('input.btn:nth-child(1)')
等同於
.setValue('#RecoverEmail', ['linao2645900@yahoo.com.tw', browser.Keys.ENTER])
用來設定以甚麼瀏覽器開啟的。
"test_settings": {/* */}
lib
用來啟動driver以及server
log
工作日誌
page
放個utils.js整合重複的事情
report
xml檔
screenshots
嗯嗯嗯
tests
,來放一堆要測試的js檔案
├─lib
├─log
├─pages
├─reports
│ └─XMLReports
│ ├─artsyjewels
│ │ ├─casesSOP
│ │ └─testcases
│ └─examples
├─screenshots
└─tests
├─artsyjewels
│ ├─casesSOP
│ └─simpleStream
└─examples