自动化网页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动化网页相关的知识,希望对你有一定的参考价值。
我想在循环中对现有网页执行某些操作
- 点击侧面菜单栏。
- 单击过滤器选项。
- 选择打开链接的某个链接。
- 转到下一页。
- 更改打开的链接下拉列表中的选项。
- 单击某个按钮。如何使用编码执行此操作?如果我已经使用硒,哪种语言更可取?
答案
Selenium将为您完成所有这些,还有更多!以下是使用Firefox的示例;你可以轻松使用Chrome,IE等
from selenium import webdriver
profile = webdriver.FirefoxProfile()
profile.accept_untrusted_certs = True
wd = webdriver.Firefox(executable_path="C:/Utility/geckodriver.exe", firefox_profile=profile)
url = "https://www.google.com/"
wd.get(url)
# download geckodriver for windows 64-bit from here
# https://github.com/mozilla/geckodriver/releases
你需要关注这样的事情:
find_element_by_class_name(name)
Finds an element by class name.
Args:
name: The class name of the element to find.
Returns:
WebElement - the element if it was found
Raises:
NoSuchElementException - if the element wasn’t found
Usage:
element = driver.find_element_by_class_name('foo')
有关详细信息,请参阅以下链接。
https://selenium-python.readthedocs.io/api.html
https://www.seleniumhq.org/docs/
以上是关于自动化网页的主要内容,如果未能解决你的问题,请参考以下文章