electron/docs/tutorial/using-selenium-and-webdriver.md

133 lines
3.7 KiB
Markdown
Raw Normal View History

2014-09-12 16:14:24 +00:00
# Using Selenium and WebDriver
From [ChromeDriver - WebDriver for Chrome][chrome-driver]:
> 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.
2015-09-02 17:23:37 +00:00
In order to use `chromedriver` with Electron you have to tell it where to
find Electron and make it think Electron is the Chrome browser.
## Setting up with WebDriverJs
2015-09-01 02:32:25 +00:00
[WebDriverJs](https://code.google.com/p/selenium/wiki/WebDriverJs) provides
a Node package for testing with web driver, we will use it as an example.
2015-09-01 02:32:25 +00:00
### 1. Start ChromeDriver
First you need to download the `chromedriver` binary, and run it:
```bash
$ ./chromedriver
Starting ChromeDriver (v2.10.291558) on port 9515
Only local connections are allowed.
```
Remember the port number `9515`, which will be used later
### 2. Install WebDriverJS
```bash
$ npm install selenium-webdriver
```
2015-09-01 02:32:25 +00:00
### 3. Connect to ChromeDriver
2015-04-16 03:31:12 +00:00
The usage of `selenium-webdriver` with Electron is basically the same with
upstream, except that you have to manually specify how to connect chrome driver
2015-04-16 03:31:12 +00:00
and where to find Electron's binary:
```javascript
var webdriver = require('selenium-webdriver');
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.
binary: '/Path-to-Your-App.app/Contents/MacOS/Atom',
}
})
.forBrowser('electron')
.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();
```
## Setting up with WebdriverIO
2015-09-01 02:32:25 +00:00
[WebdriverIO](http://webdriver.io/) provides a Node package for testing with web
driver.
2015-09-01 02:32:25 +00:00
### 1. Start ChromeDriver
First you need to download the `chromedriver` binary, and run it:
```bash
$ chromedriver --url-base=wd/hub --port=9515
Starting ChromeDriver (v2.10.291558) on port 9515
Only local connections are allowed.
```
Remember the port number `9515`, which will be used later
2015-08-25 06:15:59 +00:00
### 2. Install WebdriverIO
```bash
$ npm install webdriverio
```
### 3. Connect to chrome driver
2015-09-01 02:32:25 +00:00
```javascript
var webdriverio = require('webdriverio');
var options = {
2015-09-01 02:32:25 +00:00
host: "localhost", // Use localhost as chrome driver server
port: 9515, // "9515" is the port opened by chrome driver.
desiredCapabilities: {
2015-08-25 06:15:59 +00:00
browserName: 'chrome',
chromeOptions: {
binary: '/Path-to-Your-App/electron', // Path to your Electron binary.
args: [/* cli arguments */] // Optional, perhaps 'app=' + /path/to/your/app/
}
2015-08-25 06:15:59 +00:00
}
};
2015-08-25 06:15:59 +00:00
var client = webdriverio.remote(options);
client
.init()
.url('http://google.com')
.setValue('#q', 'webdriverio')
.click('#btnG')
2015-08-25 06:15:59 +00:00
.getTitle().then(function(title) {
console.log('Title was: ' + title);
})
.end();
```
## Workflow
2015-09-01 02:32:25 +00:00
To test your application without rebuilding Electron, simply
[place](https://github.com/atom/electron/blob/master/docs/tutorial/application-distribution.md)
your app source into Electron's resource directory.
Alternatively, pass an argument to run with your electron binary that points to
your app's folder. This eliminates the need to copy-paste your app into
Electron's resource directory.
[chrome-driver]: https://sites.google.com/a/chromium.org/chromedriver/