python+selenium实现百度搜索设置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium实现百度搜索设置相关的知识,希望对你有一定的参考价值。

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
import time

driver = webdriver.Chrome()
url = "http://www.baidu.com"
driver.get(url)
driver.maximize_window()
driver.implicitly_wait(5)

#进入搜索设置项
link = driver.find_element_by_link_text("设置")
ActionChains(driver).move_to_element(link).perform()

driver.find_element_by_link_text("搜索设置").click()
time.sleep(2)

# #设置每页搜索结果为50条
choice = driver.find_element_by_name("NR")
choice.find_element_by_xpath("//option[@value=‘50‘]").click()
time.sleep(2)

#保存设置
driver.find_element_by_xpath("//a[@class=‘prefpanelgo‘]").click()
time.sleep(3)

#弹框处理
#accept - 点击【确认】按钮
#dismiss - 点击【取消】按钮
driver.switch_to_alert().accept()

#跳转到百度首页后,进行搜索表
driver.find_element_by_id(‘kw‘).send_keys("selenium")
driver.find_element_by_id(‘su‘).click()
time.sleep(3)

driver.quit()




































以上是关于python+selenium实现百度搜索设置的主要内容,如果未能解决你的问题,请参考以下文章

python selenium百度搜索,怎么写才能点击该链接查看?

selenium中怎么定位百度首页-设置-搜索设置?

Python+Selenium框架版- 进一步实现POM和可能遇到问题解决方法

Python+Selenium动态网页的信息爬取

爬虫?还是自动化?Python使用Selenium自动进行百度搜索

爬虫?还是自动化?Python使用Selenium自动进行百度搜索