为了账号安全,请及时绑定邮箱和手机立即绑定

Python Selenium 随机 xpath 点击

Python Selenium 随机 xpath 点击

梵蒂冈之花 2023-10-26 14:32:39
我希望我的代码从网页中选择一个随机 xpath,并在每次运行我的代码时单击它,使用 Python 和 Selenium。你能帮我吗?谢谢。
查看完整描述

1 回答

?
幕布斯7119047

TA贡献1794条经验 获得超8个赞

这应该可以帮助您:


from selenium import webdriver

import random


driver = webdriver.Chrome()


driver.get('url')


elements = driver.find_elements_by_xpath('//*[@id]') #Finds all elements in the page


element = random.choice(elements) #Selects a random element from the list of elements


element.click() #Clicks on the selected element


查看完整回答
反对 回复 2023-10-26
  • 1 回答
  • 0 关注
  • 91 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信