将 Watir/Watin 脚本转换为 Selenium 脚本

发布于 2024-10-10 02:20:56 字数 95 浏览 8 评论 0原文

是否可以将 Watir/Waitin 脚本自动翻译为 selenium?问题是selenium ide仅适用于firefox,我需要在Internet Explorer上录制。

Is it possible to automate the translation of a Watir/Waitin script to selenium? The problem is the selenium ide is only for firefox, and I need to record on Internet Explorer.

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

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

发布评论

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

评论(1

金橙橙 2024-10-17 02:20:56

如果您已经有 Watir 脚本,为什么不将它同时用于 IE 和 FF?

require 'watir'

Watir::Browser.default = "ie"
#Watir::Browser.default = "firefox"

@browser = Watir::Browser.new

根据您的第一个陈述和 FF/IE 的问题,我没有看到 Selenium 进入该问题的位置。

If you already have a Watir script, why don't you use it for both IE and FF?

require 'watir'

Watir::Browser.default = "ie"
#Watir::Browser.default = "firefox"

@browser = Watir::Browser.new

I'm not seeing where Selenium enters into that problem based on your first statement and the problem with FF/IE.

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