扩展Selenium:如何调用命令?

时间:2011-02-19 17:04:00

标签: selenium extension-methods click selenium-rc selenium-ide

我读到了user extensionsextending selenium,但我想知道如何在我创建的自定义命令中调用命令。

我在Selenium IDE选项中向Selenium核心扩展(user-extensions.js)添加了类似于以下内容的文件。

// selenium-action-example.js

Selenium.prototype.doExample = function() {
  this.doOpen("/"); // doesn't waitForPageToLoad like the command does

  // These two commands are equivalent to the clickAndWait command. NOT!
  // For proof, see the filterForRemoteControl function:
  // http://code.google.com/p/selenium/source/browse/trunk/ide/src/extension/content/formats/formatCommandOnlyAdapter.js?r=8284#68
  this.doClick("css=a#example");
  this.doWaitForPageToLoad(); // doesn't wait at all

  this.doClick("link=Example");
  this.doWaitForElementPresent("example"); // error! undefined function
  this.doClick("example");
};

换句话说,我如何在自定义操作中点击之间等待?

2 个答案:

答案 0 :(得分:2)

你的命令

this.doWaitForPageToLoad(); // doesn't wait at all

不等待,因为您没有在括号中指定等待时间。你应该把它写成

this.doWaitForPageToLoad(30000); // time in milliseconds

游览另一个命令

this.doWaitForElementPresent("example"); // error! undefined function

因为Selenium中没有任何功能。每当它等待一个元素时,它会检查该元素是否存在,所以你应该等待时间直到它可见/存在。 使用For循环和ispresent命令可以执行此操作。

此致

答案 1 :(得分:0)

等待页面加载不适用于当前版本的Selenium。据我所知,这是因为doWaitForPageToLoad将等待推迟到当前Selenium IDE命令结束,即等待页面加载停止 test 执行直到页面加载,但不是执行这个执行的实际javascript函数。

此时你必须将你的功能分成两部分。