gpt4 book ai didi

javascript - 如何使用 selenium webdriver 跟踪选项卡更新

转载 作者:数据小太阳 更新时间:2023-10-29 06:01:27 25 4
gpt4 key购买 nike

我有一个网页,通知在浏览器选项卡上更新,让我来直播 example此处浏览器选项卡更新了消息计数,我如何使用 selenium webdriver 进行追踪

enter image description here

最佳答案

您可以使用 selenium 脚本中的 javascript 启动一个 regex 来找到您需要的计数器。您可以检查之前和之后的状态以进行验证。

console.log((/\(([^)]+)\)/).exec(document.title)[1]);

如果您想使用 seleniumjava 来实现:

String title = driver.getTitle();
String counter = title.substring(title.indexOf("(") + 1, title.indexOf(")"));

使用 gmail 测试,title = "Inbox (1) - chandan.nayak@xxxx.com - xxxx Mail"和 stackoverflow,title = "(13) JavaScript | xxx"

引用链接:Link

关于javascript - 如何使用 selenium webdriver 跟踪选项卡更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30326120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com