附录:常见问题
另外一份常见问题解答:https://code.google.com/p/selenium/wiki/FrequentlyAskedQuestions
怎样使用ChromeDriver
下载最新的chromedriver,解压文件:
unzip chromedriver_linux32_x.x.x.x.zip
你应该会看到一个曾经的chromedriver
,现在你可以像这样创造一个Chrome Driver的实例了:
driver - webdriver.Chrome(executable_path="/path/to/chromedriver")
使用示例的剩余部分在其...