- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://path-not-tested.com/dl_selaid.html
软件介绍
SelAid 使得可以很方便的使用 Selenium 2.0 WebDriver 来测试 Web 应用程序,助手类提供丰富的关于 WebDriver 的 WebElement 的抽象层。使用 SelAid 来编写 Web 测试程序使得测试更加简单、可读和可维护。
示例代码:
WebElement element = _driver.findElement(By.id("colors"));
SelectHelper helper = new SelectHelper(element);
assertTrue(helper.isMultiSelect());
assertTrue(helper.isSelected("yellow"));
assertFalse(helper.isSelected("red"));
assertFalse(helper.isSelected("fuchsia")); // doesn't exist
// concisely check which entries are selected
assertArrayEquals(
new String[] {"Yellow", "Green"},
helper.getSelectedText()
);
An Introduction to Probability Theory and Its Applications
William Feller / Wiley / 1991-1-1 / USD 120.00
Major changes in this edition include the substitution of probabilistic arguments for combinatorial artifices, and the addition of new sections on branching processes, Markov chains, and the De Moivre......一起来看看 《An Introduction to Probability Theory and Its Applications》 这本书的介绍吧!
