先用node安装
下载selenium-standalone server并运行
?
1 2 |
|
创建test_webdriver.js
?
1 2 3 4 5 6 7 8 9 10 |
|
用node执行
?
1 |
|
报错:the path to the driver executable must be set by the
webdriver.chrome.driver
解决:下载chromedriver https://code.google.com/p/selenium/wiki/ChromeDriver
在js文件中加入代码:
?
1 2 |
|
重新运行,报错: can‘t find module ‘system‘
修改webdriver server的运行命令:
?
1 |
|
删掉js中加入的代码,运行成功