How to Use ChromeDriver? Download the latest driver version and decompress it # All right, this command is prepared for linux or osx users # For windows users, click it directly. by Ethanol unzip chromedriver_linux32_x.x.x.x.zip, you will get an executable file of chromedriver. now you can use the following code: driver = webdriver. chrome (executable_path = "/path/to/chromedriver") # If windows doesn't work, throw the chrome driver to the python installation directory. Does Selenium 2 support XPath 2.0? Reference: http://seleniumhq.org/docs/03_webdriver.html#how-xpath-works-in-webdriver Selenium delegates xpath processing to the browser's xpath parsing engine. Selenium supports any browser. If the wonderful browsers do not have the xpath engine (IE6, 7, 8), selenium will only support xpath1.0 on these masters. How can I roll to the bottom of the page? Reference: http://blog.varunin.com/2011/08/scrolling-on-pages-using-selenium.html you can use the execute_script method to handle this. Call the API of native javascript so that you can roll wherever you want. The following code demonstrates how to roll to the bottom of the page: driver.exe cute_script ("window. scrollTo (0, document. body. scrollHeight); ") window