1

这是我尝试访问网页中的隐藏文本字段时遇到的错误。我正在使用页面导航

irb(main):184:0> browser.text_fields[1].set "嘿,伙计"

WIN32OLERuntimeError: (in OLE method 'focus': )
OLE error code:800A083E in htmlfile
Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus. HRESULT error code:0x80020009 Exception occurred. from C:/Ruby193/lib/ruby/gems/1.9.1/gems/watir-classic-3.0.0/lib/watir-classic/input_elements.rb:294:in 'method_missing' from C:/Ruby193/lib/ruby/gems/1.9.1/gems/watir-classic-3.0.0/lib/watir-classic/input_elements.rb:294:in 'set' from (irb):184 from C:/Ruby193/bin/irb:12:in 'main>'

提前致谢!!!

4

2 回答 2

1

当您手动使用浏览器时,您如何使用该文本字段?

您需要首先触发导致文本字段可见的事件。然后,您可以使用您尝试过的代码输入文本字段。

于 2012-06-15T13:03:39.360 回答
0

如果您查看跟踪,则会发生这种情况,因为您正在尝试更新不可编辑或不可见的字段。如果您使用的是 Watir “Classic”(仅限 IE),您可以编写:

require 'watir'
 .
 .
 .
browser.text_fields[1].value = "Hey man" 

但是,如果您使用的其他浏览器/驱动程序也无法正常工作。在浏览器的隐藏/不可编辑字段中,您必须使用 javascript 来执行此操作:

 browser.execute_script("var elem = document.getElementById('your_textfield_id'); elem.value = 'Hey man';")

烦人,但很有意义,因为它不能由用户编辑,因此不能使用键盘“设置”。

于 2014-06-18T17:37:34.897 回答