如果可能,请单击“关注”按钮,并在使用 Selenium 检查/关注 Instagramm 后关闭选项卡

发布于 2025-01-11 23:44:49 字数 1432 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

ま昔日黯然 2025-01-18 23:44:49

您正在使用绝对 xpath,这不是首选,因为网站的微小更改会使您的代码无效。始终尝试使用相对 xpath。

不管怎样,试试这个代码,它会起作用的。

driver.find_element_by_xpath("//main[@role='main']//button/div[contains(string(), 'Follow')]").click()

根据您在 Instagram 上看到的语言内容更改“关注”文本。对于德语,代码应该是

driver.find_element_by_xpath("//main[@role='main']//button/div[contains(string(), 'Folgen')]").click()

You are using absolute xpath which is not preferred because a minor change in website renders your code ineffective. Always try to use relative xpath.

Anyway, try this code, it will work.

driver.find_element_by_xpath("//main[@role='main']//button/div[contains(string(), 'Follow')]").click()

Change the text "Follow" as per what you see in your language on instagram. For german language, the code should be

driver.find_element_by_xpath("//main[@role='main']//button/div[contains(string(), 'Folgen')]").click()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文