本文介绍了FireWatir TextField设置:非常慢的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当在ruby中调用text_field的set方法时,在浏览器中输入文本的速度非常慢,大约为1个字符/秒.

When calling the set method of a text_field in ruby, the text is being entered at a very slow rate in the browser, roughly at 1 character / second.

环境信息:

  1. Ubuntu 10.10
  2. FireFox 3.6.13
  3. JSSh 0.9
  4. Ruby 1.9.2p136
  5. FireWatir 1.7.1

请指教.预先感谢.

推荐答案

这是一个已知的错误: WTR-397

It is a known bug: WTR-397

解决方法是使用 watir-webdriver 或使用value=而不是set.示例:

Workaround is to use watir-webdriver or to use value= instead of set. Example:

browser.text_field(how => what).value= "string"

这篇关于FireWatir TextField设置:非常慢的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 08:14