硒2.0 API

发布于 2024-11-05 21:40:30 字数 245 浏览 0 评论 0原文

我们已经开始使用 Selenium RC 进行 Web 自动化,现在对其进行重新设计,将其更改为 Selenium API。下面是一些需要处理的事情。

selenium.Mouseover(xpath);
selenium.Isvisible(xpath);
selenium.waitforpageload(seconds);

Selenium API 2.0 支持以上吗?对此的任何指示都受到高度赞赏。

We have started off our Web Automation with Selenium RC and now reworking on it to change it to Selenium API. Below are the things which are tuff to handle.

selenium.Mouseover(xpath);
selenium.Isvisible(xpath);
selenium.waitforpageload(seconds);

Does Selenium API 2.0 support above? Any pointers on this is highly appreciated.

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

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

发布评论

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

评论(1

私野 2024-11-12 21:40:30

你没有指定一种语言,但我只能从 Ruby 的角度回答,所以我就这么做。

Mouseover(xpath) 替换为 driver.mouse.move_to(driver.find_element(xpath))

driver.mouse.move_to(driver.find_element(xpath))

Isvisible 替换为

driver.find_element(xpath).displayed?

waitforpageload 已被删除。单击和导航例程现在会自动等待。

You don't specify a language, bur I can only answer from a Ruby perspective, so I'm going to go with that.

Mouseover(xpath) is replaced with driver.mouse.move_to(driver.find_element(xpath))

driver.mouse.move_to(driver.find_element(xpath))

Isvisible is replaced with

driver.find_element(xpath).displayed?

waitforpageload has been removed. The click and nagvigate routines wait automatically now.

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