||
1. 打开网页输入信息,点击搜索
=====================================================
# 引入selenium库中的webdriver模块
from selenium import webdriver
#打开谷歌浏览器
driver = webdriver.Chrome()
#打开百度搜索主页
driver.get('https://www.baidu.com')
'''
调用selenium库中的find_element_by_xpath()方法定位搜索框,
同时使用send_keys()方法在其中输入信息
'''
driver.find_element_by_xpath('//*[@id="kw"]').send_keys('this is a test')
'''
调用selenium库中的find_element_by_xpath()方法定位搜索按钮,
同时使用click()方法对按钮进行点击
'''
driver.find_element_by_xpath('//*[@id="su"]').click()
=====================================================
Archiver|手机版|科学网 ( 京ICP备07017567号-12 )
GMT+8, 2024-11-26 17:29
Powered by ScienceNet.cn
Copyright © 2007- 中国科学报社