第一个selenium 自动化脚本,访问百度网页并搜索python

1. 打开cmd ,输入python之后直接输入下面的版本

from selenium import webdriver # 从selenium导入webdriver

driver = webdriver.Chrome() # Optional argument, if not specified will search path.

driver.get('https://www.baidu.com') # 获取百度页面

 inputElement = driver.find_element_by_id('kw') #获取输入框

searchButton = driver.find_element_by_id('su') #获取搜索按钮

 inputElement.send_keys("Python") #输入框输入"Python"

searchButton.click() #搜索

driver.close()

2. 直接把代码保存成.py文件, cmd下执行

cmd到文件存储的位置

python

输入文件名


第一个selenium 自动化脚本,访问百度网页并搜索python_第1张图片

你可能感兴趣的:(第一个selenium 自动化脚本,访问百度网页并搜索python)