使用 Watir 在 Firefox 中单击特定按钮有困难

Difficulty Clicking a Specific Button in Firefox Using Watir

过去几个小时我一直在为此苦苦挣扎。我试图让脚本点击页面上的某个按钮,但我一直收到 this error.

Here is the HTML of the button I'm trying to click on.

我用来尝试点击它的代码如下所示:

$browser.button(:name => 'Add and Continue').click

对于属性,我也尝试过文本。我什至尝试使用 ID,但没有用,这是最好的,因为它经常更改。我还确保它不在框架内。

有什么想法吗?

是您要查找的文字属性,但由于图片内容也在按钮的文字中,因此不匹配。您可能应该使用

行中的正则表达式
$browser.button(:text => /Add and Continue/).click