- 先開啟
node command line tool
,mkdir selenium
- 接著將當前目錄移動
(cd)
到selenium
資料夾底下 npm init
填入您的資料, 會產出一個package.json
檔案- 安裝
node package
的時候, 記得處理好依賴關係
, 之後要跟進的開發人員直接npm install
即可 npm install --save selenium-webdriver chromedriver
- 安裝完
chromedriver
之後, 記得去設定環境變數
> PATH 加入你的chromedriver.exe
所在的路徑 - 重啟你的
command line
tool. - 可以開始寫 test的 JS code 了!!
- There is a good tutorial [here] (http://simpleprogrammer.com/2014/02/03/selenium-with-node-js/)
- Google Selenium [API] (http://selenium.googlecode.com/git/docs/api/javascript/index.html) and here
- [How To Use Mocha With Node.js ...] (http://webapplog.com/tdd/)
- [The Difference Between TDD and BDD] (https://joshldavis.com/2013/05/27/difference-between-tdd-and-bdd/)
- [阿唷!! 有中文的捏] (http://teddy-chen-tw.blogspot.tw/2014/09/bddtdd.html)