TA的每日心情 | 开心 2015-2-4 13:12 |
---|
签到天数: 2 天 连续签到: 1 天 [LV.1]测试小兵
|
本帖最后由 山风呼啸 于 2014-12-14 11:12 编辑
- Browser = Watir::Browser.new :chrome
- Browser.goto('http:/t.qq.com/')
- Browser.text_field(:id,'u').set('123456')
- Browser.text_field(:id,'p').set('123456')
- Browser.button(:id,'login_botton').click()
复制代码
报错信息:
D:/Ruby21-x64/lib/ruby/gems/2.1.0/gems/watir-webdriver-0.6.11/lib/watir-webdriver/elements/element.rb:513:in `assert_exists': unable to locate element, using {:id=>"u", :tag_name=>"input or textarea", :type=>"(any text type)"} (Watir::Exception::UnknownObjectException)
from D:/Ruby21-x64/lib/ruby/gems/2.1.0/gems/watir-webdriver-0.6.11/lib/watir-webdriver/user_editable.rb:11:in `set'
from D:/ruby/test.rb:9:in `<main>'
[Finished in 12.1s with exit code 1]
页面上既有id也有name,反复尝试无法定位,不知道是什么原因?请教。
|
|