Python Selenium 自动化 入门

第 1 步:安装 Selenium

打开 terminal or command prompt 并运行以下命令 Selenium 通过 pip 安装库:

pip3 install selenium

第 2 步:下载并安装 WebDriver

与之前回复中描述的方式类似,您需要下载并安装与 WebDriver 您要使用的浏览器相对应的浏览器。

第三步:编写 Python 代码

Selenium 以下是如何使用打开网页、执行搜索和检索内容 的示例:

from selenium import webdriver  
  
# Initialize the browser(using Chrome in this example)  
driver = webdriver.Chrome()  
  
# Open a web page  
driver.get("https://www.example.com")  
  
# Find an element on the web page  
search_box = driver.find_element_by_name("q")  
search_box.send_keys("Hello, Selenium!")  
search_box.submit()  
  
# Print the web page content after the search  
print(driver.page_source)  
  
# Close the browser  
driver.quit()  

请注意,上面的示例使用 Chrome 浏览器。 如果您想使用不同的浏览器,则需要替换 webdriver.Chrome()webdriver.Firefox()webdriver.Edge() 根据您要使用的浏览器。

重要的提示

  • Selenium 需要一个 WebDriver 来控制网络浏览器。 确保您已安装并设置了正确的 WebDriver.
  • 当使用 Selenium 自动化 Web 浏览器交互时,请注意与网站上的安全措施进行交互并遵守网站的政策。