2015-06-22 05:06:06 +00:00
|
|
|
# Selenium 과 WebDriver 사용하기
|
|
|
|
|
2015-11-19 19:46:05 +00:00
|
|
|
[ChromeDriver - WebDriver for Chrome][chrome-driver]로부터 인용:
|
2015-06-22 05:06:06 +00:00
|
|
|
|
|
|
|
> WebDriver는 많은 브라우저에서 웹 앱을 자동적으로 테스트하는 툴입니다.
|
2015-11-19 17:25:44 +00:00
|
|
|
> 이 툴킷은 웹 페이지를 자동으로 탐색하고 유저 폼을 사용하거나 자바스크립트를 실행하는
|
|
|
|
> 등의 작업을 수행할 수 있습니다. ChromeDriver는 Chromium의 WebDriver wire 프로토콜
|
|
|
|
> 스텐드얼론 서버 구현입니다. Chromium 과 WebDriver 팀 멤버에 의해 개발되었습니다.
|
2015-06-22 05:06:06 +00:00
|
|
|
|
2015-11-19 17:25:44 +00:00
|
|
|
Electron에서 `chromedriver`를 사옹하려면 드라이버에서 Electron을 찾을 수 있도록 해야
|
|
|
|
하며 Electron은 Chrome 브라우저와 비슷하다는 점을 기억해야 합니다.
|
2015-06-22 05:06:06 +00:00
|
|
|
|
|
|
|
## WebDriverJs 설정하기
|
|
|
|
|
2015-11-19 17:25:44 +00:00
|
|
|
[WebDriverJs](https://code.google.com/p/selenium/wiki/WebDriverJs)는 WebDriver를
|
2016-04-30 16:12:54 +00:00
|
|
|
사용하여 테스트 할 수 있도록 도와주는 node 패키지입니다. 다음 예시를 참고하세요.
|
2015-06-22 05:06:06 +00:00
|
|
|
|
|
|
|
### 1. 크롬 드라이버 시작
|
|
|
|
|
|
|
|
먼저, `chromedriver` 바이너리를 다운로드 받고 실행합니다:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ ./chromedriver
|
|
|
|
Starting ChromeDriver (v2.10.291558) on port 9515
|
|
|
|
Only local connections are allowed.
|
|
|
|
```
|
|
|
|
|
2015-09-04 07:01:43 +00:00
|
|
|
포트 `9515`는 나중에 사용하므로 기억해 놓습니다.
|
2015-06-22 05:06:06 +00:00
|
|
|
|
|
|
|
### 2. WebDriverJS 설치
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ npm install selenium-webdriver
|
|
|
|
```
|
|
|
|
|
|
|
|
### 3. 크롬 드라이버에 연결
|
|
|
|
|
2015-11-19 17:25:44 +00:00
|
|
|
`selenium-webdriver`를 Electron과 같이 사용하는 방법은 기본적으로 upstream과
|
|
|
|
같습니다. 한가지 다른점이 있다면 수동으로 크롬 드라이버 연결에 대해 설정하고 Electron
|
|
|
|
실행파일의 위치를 전달합니다:
|
2015-06-22 05:06:06 +00:00
|
|
|
|
|
|
|
```javascript
|
2015-11-16 03:15:21 +00:00
|
|
|
const webdriver = require('selenium-webdriver');
|
2015-06-22 05:06:06 +00:00
|
|
|
|
2016-05-10 07:27:14 +00:00
|
|
|
const driver = new webdriver.Builder()
|
2015-06-22 05:06:06 +00:00
|
|
|
// 작동하고 있는 크롬 드라이버의 포트 "9515"를 사용합니다.
|
|
|
|
.usingServer('http://localhost:9515')
|
2015-11-12 03:24:28 +00:00
|
|
|
.withCapabilities({
|
|
|
|
chromeOptions: {
|
|
|
|
// 여기에 사용중인 Electron 바이너리의 경로를 지정하세요.
|
2016-02-07 07:02:48 +00:00
|
|
|
binary: '/Path-to-Your-App.app/Contents/MacOS/Electron',
|
2015-11-12 03:24:28 +00:00
|
|
|
}
|
|
|
|
})
|
2015-06-22 05:06:06 +00:00
|
|
|
.forBrowser('electron')
|
|
|
|
.build();
|
|
|
|
|
|
|
|
driver.get('http://www.google.com');
|
|
|
|
driver.findElement(webdriver.By.name('q')).sendKeys('webdriver');
|
|
|
|
driver.findElement(webdriver.By.name('btnG')).click();
|
2016-05-10 07:27:14 +00:00
|
|
|
driver.wait(() => {
|
|
|
|
return driver.getTitle().then((title) => {
|
2015-06-22 05:06:06 +00:00
|
|
|
return title === 'webdriver - Google Search';
|
|
|
|
});
|
|
|
|
}, 1000);
|
|
|
|
|
|
|
|
driver.quit();
|
|
|
|
```
|
|
|
|
|
2015-08-25 13:46:28 +00:00
|
|
|
## WebdriverIO 설정하기
|
|
|
|
|
2015-11-19 17:25:44 +00:00
|
|
|
[WebdriverIO](http://webdriver.io/)는 웹 드라이버와 함께 테스트를 위해 제공되는
|
|
|
|
node 패키지입니다.
|
2015-08-25 13:46:28 +00:00
|
|
|
|
|
|
|
### 1. 크롬 드라이버 시작
|
|
|
|
|
|
|
|
먼저, `chromedriver` 바이너리를 다운로드 받고 실행합니다:
|
|
|
|
|
|
|
|
```bash
|
2015-10-03 08:54:05 +00:00
|
|
|
$ chromedriver --url-base=wd/hub --port=9515
|
2015-08-25 13:46:28 +00:00
|
|
|
Starting ChromeDriver (v2.10.291558) on port 9515
|
|
|
|
Only local connections are allowed.
|
|
|
|
```
|
|
|
|
|
|
|
|
포트 `9515`는 나중에 사용하므로 기억해 놓읍시다
|
|
|
|
|
|
|
|
### 2. WebDriverIO 설치
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ npm install webdriverio
|
|
|
|
```
|
|
|
|
|
|
|
|
### 3. 크롬 드라이버에 연결
|
|
|
|
```javascript
|
2015-11-16 03:15:21 +00:00
|
|
|
const webdriverio = require('webdriverio');
|
2016-05-10 07:27:14 +00:00
|
|
|
let options = {
|
|
|
|
host: "localhost", // localhost에서 작동중인 크롬 드라이버 서버를 사용합니다.
|
|
|
|
port: 9515, // 연결할 크롬 드라이버 서버의 포트를 설정합니다.
|
|
|
|
desiredCapabilities: {
|
|
|
|
browserName: 'chrome',
|
|
|
|
chromeOptions: {
|
|
|
|
binary: '/Path-to-Your-App/electron', // Electron 바이너리 경로
|
|
|
|
args: [/* cli arguments */] // 선택 사항, 'app=' + /path/to/your/app/
|
2015-08-25 13:46:28 +00:00
|
|
|
}
|
2016-05-10 07:27:14 +00:00
|
|
|
}
|
2015-08-25 13:46:28 +00:00
|
|
|
};
|
|
|
|
|
2016-05-10 07:27:14 +00:00
|
|
|
let client = webdriverio.remote(options);
|
2015-11-19 17:25:44 +00:00
|
|
|
|
2015-08-25 13:46:28 +00:00
|
|
|
client
|
2016-05-10 07:27:14 +00:00
|
|
|
.init()
|
|
|
|
.url('http://google.com')
|
|
|
|
.setValue('#q', 'webdriverio')
|
|
|
|
.click('#btnG')
|
|
|
|
.getTitle().then((title) => {
|
|
|
|
console.log('Title was: ' + title);
|
|
|
|
})
|
|
|
|
.end();
|
2015-08-25 13:46:28 +00:00
|
|
|
```
|
|
|
|
|
2015-11-12 03:24:28 +00:00
|
|
|
## 작업 환경
|
2015-06-22 05:06:06 +00:00
|
|
|
|
2015-11-19 17:25:44 +00:00
|
|
|
따로 Electron을 다시 빌드하지 않는 경우 간단히 어플리케이션을 Electron의 리소스
|
|
|
|
디렉터리에 [배치](application-distribution.md)하여 바로 테스트 할 수 있습니다.
|
2015-06-22 05:06:06 +00:00
|
|
|
|
2015-11-19 17:25:44 +00:00
|
|
|
또한, Electron 바이너리의 명령줄 인수에 어플리케이션 폴더를 지정하는 방법으로 실행할
|
|
|
|
수도 있습니다. 이 방법을 사용하면 어플리케이션 폴더를 Electron의 `resource`
|
|
|
|
디렉터리로 복사하는 불필요한 과정을 생략할 수 있습니다.
|
2015-11-12 03:24:28 +00:00
|
|
|
|
2015-06-22 05:06:06 +00:00
|
|
|
[chrome-driver]: https://sites.google.com/a/chromium.org/chromedriver/
|