2016-01-28 14:52:57 +00:00
# 使用 Selenium 和 WebDriver
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
根據 [ChromeDriver - WebDriver for Chrome][chrome-driver]:
2016-01-28 10:20:39 +00:00
> WebDriver is an open source tool for automated testing of web apps across many
> browsers. It provides capabilities for navigating to web pages, user input,
> JavaScript execution, and more. ChromeDriver is a standalone server which
> implements WebDriver's wire protocol for Chromium. It is being developed by
> members of the Chromium and WebDriver teams.
2016-01-28 14:52:57 +00:00
為了與 Electron 一起使用 `chromedriver` ,你需要告訴 `chromedriver` 去哪找 Electron 並讓他知道 Electron 是 Chrome 瀏覽器。
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
## 透過 WebDriverJs 設定
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
[WebDriverJs ](https://code.google.com/p/selenium/wiki/WebDriverJs ) 提供一個 Node 套件來透過 web driver 做測試,我們將使用它作為例子。
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
### 1. 啟動 ChromeDriver
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
首先你需要下載 `chromedriver` 執行檔,然後執行它:
2016-01-28 10:20:39 +00:00
```bash
$ ./chromedriver
Starting ChromeDriver (v2.10.291558) on port 9515
Only local connections are allowed.
```
2016-01-28 14:52:57 +00:00
記住埠號(port number) `9515` ,等等會使用到它
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
### 2. 安裝 WebDriverJS
2016-01-28 10:20:39 +00:00
```bash
$ npm install selenium-webdriver
```
2016-01-28 14:52:57 +00:00
### 3. 連接到 ChromeDriver
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
與 Electron 一起使用 `selenium-webdriver` 的方法基本上與 upstream 相同,除了你需要手動指定如何連接 chrome driver 和去哪找 Electron 的執行檔:
2016-01-28 10:20:39 +00:00
```javascript
2016-10-03 03:47:16 +00:00
const webdriver = require('selenium-webdriver')
2016-01-28 10:20:39 +00:00
var driver = new webdriver.Builder()
// The "9515" is the port opened by chrome driver.
.usingServer('http://localhost:9515')
.withCapabilities({
chromeOptions: {
// Here is the path to your Electron binary.
2016-10-03 03:47:16 +00:00
binary: '/Path-to-Your-App.app/Contents/MacOS/Atom'
2016-01-28 10:20:39 +00:00
}
})
.forBrowser('electron')
2016-10-03 03:47:16 +00:00
.build()
driver.get('http://www.google.com')
driver.findElement(webdriver.By.name('q')).sendKeys('webdriver')
driver.findElement(webdriver.By.name('btnG')).click()
driver.wait(function () {
return driver.getTitle().then(function (title) {
return title === 'webdriver - Google Search'
})
}, 1000)
driver.quit()
2016-01-28 10:20:39 +00:00
```
2016-01-28 14:52:57 +00:00
## 透過 WebdriverIO 設定
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
[WebdriverIO ](http://webdriver.io/ ) 提供一個 Node 套件來透過 web driver 做測試。
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
### 1. 啟動 ChromeDriver
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
首先你需要下載 `chromedriver` 執行檔,然後執行它:
2016-01-28 10:20:39 +00:00
```bash
$ chromedriver --url-base=wd/hub --port=9515
Starting ChromeDriver (v2.10.291558) on port 9515
Only local connections are allowed.
```
2016-01-28 14:52:57 +00:00
記住埠號(port number) `9515` ,等等會用到它
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
### 2. 安裝 WebdriverIO
2016-01-28 10:20:39 +00:00
```bash
$ npm install webdriverio
```
2016-01-28 14:52:57 +00:00
### 3. 連接到 chrome driver
2016-01-28 10:20:39 +00:00
```javascript
2016-10-03 03:47:16 +00:00
const webdriverio = require('webdriverio')
2016-01-28 10:20:39 +00:00
var options = {
2016-10-03 03:47:16 +00:00
host: 'localhost', // Use localhost as chrome driver server
port: 9515, // "9515" is the port opened by chrome driver.
desiredCapabilities: {
browserName: 'chrome',
chromeOptions: {
binary: '/Path-to-Your-App/electron', // Path to your Electron binary.
args: [/* cli arguments */] // Optional, perhaps 'app=' + /path/to/your/app/
2016-01-28 10:20:39 +00:00
}
2016-10-03 03:47:16 +00:00
}
}
2016-01-28 10:20:39 +00:00
2016-10-03 03:47:16 +00:00
var client = webdriverio.remote(options)
2016-01-28 10:20:39 +00:00
client
.init()
.url('http://google.com')
.setValue('#q', 'webdriverio')
.click('#btnG')
2016-10-03 03:47:16 +00:00
.getTitle().then(function (title) {
console.log('Title was: ' + title)
2016-01-28 10:20:39 +00:00
})
2016-10-03 03:47:16 +00:00
.end()
2016-01-28 10:20:39 +00:00
```
2016-01-28 14:52:57 +00:00
## 運作流程
2016-01-28 10:20:39 +00:00
2016-03-31 23:49:59 +00:00
要在不重新建置 Electron 的情況下測試你的應用程式,只需要 [放置 ](https://github.com/electron/electron/blob/master/docs/tutorial/application-distribution.md ) 你的應用程式到 Electron 的資源目錄中即可。
2016-01-28 10:20:39 +00:00
2016-01-28 14:52:57 +00:00
或者,傳遞一個指向你應用程式資料夾的參數來透過你的 Electron 執行檔運行,這會減少複製你應用程式到 Electron 資源資料夾的需求。
2016-01-28 10:20:39 +00:00
[chrome-driver]: https://sites.google.com/a/chromium.org/chromedriver/