Auto click a button in a web page(自动单击网页中的按钮)
问题描述
我需要自动点击网页中的任何添加"按钮,如下地址:
"https://groceries.asda.com/search/yoghurt"p>
但是,页面中的添加"按钮都没有名称或 ID.所以我不能使用 Selenium 包中的 driver.find_element_by_id()
命令.
谁能帮帮我?
要单击特定产品的任何特定 Add 按钮,您可以编写如下方法:
def click_me(string):driver.find_element_by_xpath("//h3/a[@class='co-product__anchor' and contains(@title, '%s')]//following::button[1]" % (string)).click()
现在您可以点击任何一个 Add 按钮来传递它们的标题,如下所示:
click_me("Munch") # Munch Bunch Double Up Strawberry &香草酸奶# 或者click_me("ASDA") # ASDA 希腊式脱脂酸奶# 或者click_me("Petits") # Petits Filous Apricot, Strawberry &覆盆子酸奶
I need to auto click on any of the "Add" buttons in a web page like as the following address:
"https://groceries.asda.com/search/yoghurt"
But, none of the "Add" buttons in the page has name or id.
So I can not use driver.find_element_by_id()
command from Selenium package.
Can any one help me?
To click on any particular Add button for a particular product you can write a method as follows:
def click_me(string):
driver.find_element_by_xpath("//h3/a[@class='co-product__anchor' and contains(@title, '%s')]//following::button[1]" % (string)).click()
Now you can click on any of the Add button passing their title as follows:
click_me("Munch") # Munch Bunch Double Up Strawberry & Vanilla Yogurts
# or
click_me("ASDA") # ASDA Greek Style Fat Free Yogurt
# or
click_me("Petits") # Petits Filous Apricot, Strawberry & Raspberry Yogurt
这篇关于自动单击网页中的按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:自动单击网页中的按钮
基础教程推荐
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 筛选NumPy数组 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01