Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Selenium 2.25.0 是否支持 Firefox 14.0.1?
更新日志说:“将支持的 Firefox 版本更新到 17。”
但是我的测试显示了 Firefox 14 的一些奇怪行为。示例:
element.sendKeys("abcdefgh");
有时输出如下所示:
abcde^fgh
或者
abcdé?fgh
这适用于旧版本。
是的,它对我有用。您还可以检查 -
http://seleniumhq.org/about/platforms.html#browsers
我将 Selenium 2.25.0 for Java 与 Firefox 14.0.1 一起使用,没有任何问题。
您是否将测试代码从一个操作系统复制到另一个操作系统?可能格式已更改(UTF8/ISO/..),或者存在其他操作系统类型的隐藏字符,您在当前选择的操作系统上看不到这些字符。