Some selenium tips 关于Selenium的小窍门(2)

发表于:2012-05-09来源:新浪博客作者:琴侠_ 陈自欣点击数: 标签:selenium
以上的代码在windows 和 OSX 上都工作正常。坏消息是,对于 Java , C# 和Python 的coder 来说,看上去现在 Java 版本的webdriver还不支持设定chrome 的属性。 你最好是

  以上的代码在windows 和 OSX 上都工作正常。坏消息是,对于Java , C# 和Python 的coder 来说,看上去现在Java版本的webdriver还不支持设定chrome 的属性。 你最好是基于现有的FirefoxProfile 类来创建一个ChromeProfile 类。

  Scroll to a button before clicking it.

  滚动到相应的button后才点击

  Clicking buttons sometimes randomly fail. It could be caused by the fact that the button is out of the view area at the moment you command selenium to click it. One way to address it is to always scroll to it before clicking it.

  点击button有时候会无故失败,这可能是由于selenium 执行点击命令的时候,这个button在视图之外。所以解决这个问题的其中一个方法是,滚动到相应的button后才点击。

原文转自:http://www.ltesting.net