Watir:在 Safari 中找不到密码字段

发布于 2024-11-19 20:32:08 字数 475 浏览 4 评论 0原文

我是 Watir 的新手。我在完全更新的 MBP Snow Leopard 上使用 SafariWatir。

到目前为止,我已经成功使用了,

goto, link, text_field, and button

访问 text_field 时

type="password" name="pass" id="pass"

但是当我尝试使用(如 Web Inspector 中所示)

browser.text_field(:id, "pass") or
browser.text_field(:name, "pass")

,我得到

Watir::Exception::UnknownObjectException: Unable to locate TextField

I'm brand new to Watir. I'm using SafariWatir on a fully updated MBP Snow Leopard.

So far I've successfully used

goto, link, text_field, and button

but when I try to access a text_field with

type="password" name="pass" id="pass"

(as seen in Web Inspector) with

browser.text_field(:id, "pass") or
browser.text_field(:name, "pass")

I get

Watir::Exception::UnknownObjectException: Unable to locate TextField

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

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

发布评论

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

评论(2

中性美 2024-11-26 20:32:08

有一个非常简单的答案:

在 Watir 和 FireWatir 中,密码字段称为

text_field

在 SafariWatir 中,密码字段称为

password

因此,要访问 type=password 的输入,我需要使用

browser.password(:id, "pass")

or

browser.password(:name, "pass")

这解决了我的问题。

There's a very simple answer:

In Watir and FireWatir, a password field is called

text_field

In SafariWatir, a password field is called

password

So, to access a input of type=password, I needed to use

browser.password(:id, "pass")

or

browser.password(:name, "pass")

This solved my problem.

好听的两个字的网名 2024-11-26 20:32:08

注:我使用的是mac 10.8,ruby 1.9.3;

工作示例为: browser.password(:name,'password').set'yourpassword'

set 和值之间没有空格。

Notes: I'm using mac 10.8,ruby 1.9.3;

The working sample is: browser.password(:name,'password').set'yourpassword'

There is no space between set and the value.

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