python模拟打开百度并搜索
- 下载chrome驱动并解压,将解压后的exe放置和python.exe同一个目录下
- python脚本openChrome.py内容如下
#!/usr/bin/env python
from selenium import webdriver
import time
driver = webdriver.Chrome()
driver.get("http://www.baidu.com")
input = driver.find_element_by_id("kw")
# 输入搜索值
input.send_keys("python教程")
searchButton = driver.find_element_by_id("su")
# 模拟点击
searchButton.click()
time.sleep(10)
# 关闭浏览器
driver.close()
- python执行该脚本
$ python openChrome.py
网友评论