Python3.5+selenium Operation Chrome Browser

Source: Internet
Author: User

1. Installing Selenium

At the command prompt, enter: Pip install Selenium

2. Download Chromedriver

Click to download

3. Place the extracted chromedriver.exe in the Chrome browser's installation directory.

4. Example

From selenium import webdriver  import os# introduced chromedriver.exechromedriver = "c:/users/administrator/ Appdata/local/google/chrome/application/chromedriver.exe "os.environ[" webdriver.chrome.driver "] =  Chromedriverbrowser = Webdriver. Chrome (Chromedriver)

#设置浏览器需要打开的urlurl = "http://www.baidu.com" browser.get (URL)
#在百度搜索框中输入关键字 "Python" browser.find_element_by_id ("kw"). Send_keys ("python")


#关闭浏览器
#browser. Quit ()

Python3.5+selenium Operation Chrome Browser

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.