如何使用python中使用硒的键盘输入来导航网页

发布于 2025-01-24 08:14:22 字数 372 浏览 0 评论 0原文

我目前正在一个网络刮擦项目中间。为了微调内容,我必须与网页的不同元素进行交互,特别是拖放光标。我已经尝试了Selenium中的拖放方法,但是由于某种原因,无法选择该元素,无论是使用XPath还是ClassName。但是,我可以选择上方的元素。我想通过“按”选项卡3次导航到光标,然后通过5次左箭头将其向左带。我已经尝试使用以下代码行进行:

action = actionChinains(driver)

action.click(criteres).send_keys(keys.tab * 3).send_keys(keys.ARROW_LOW_LEFFT *) 5).perform()

但它似乎不起作用,我不知道为什么。

I'm currently in the middle of a web scraping project. In order to fine tune the content I have to interact with different elements of a web page, specifically a drag and drop cursor. I have tried the drag and drop method within selenium but for some reason the element cannot be selected, be it with xpath or classname. I can, however, select the element above it. I want to navigate to the cursor by "pressing" tab 3 times and then bring it to the left by "pressing" left arrow 5 times. I have tried doing so with the following lines of code:

actions = ActionChains(driver)

actions.click(criteres).send_keys(Keys.TAB * 3).send_keys(Keys.ARROW_LEFT * 5).perform()

But it doesn't seem to work and I can't figure out why.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如若梦似彩虹 2025-01-31 08:14:22

使用以下内容:

actions = ActionChains(driver) 
actions.send_keys(Keys.TAB * 3)
actions.perform()
actions.send_keys(Keys.ARROW_LEFT * 5)
actions.perform()

Use the following:

actions = ActionChains(driver) 
actions.send_keys(Keys.TAB * 3)
actions.perform()
actions.send_keys(Keys.ARROW_LEFT * 5)
actions.perform()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文