Tellurium测试案例 Tellurium配置 运行Tellurium的条件 创建自己的Tellurium测试项目 创" name="description" />
自动测试工具Tellurium快速上手指南
Tellurium是一个开源的网页测试框架,现阶段还是建立在Selenium之上。 但有很多独特的测试理念。 比之Selenium, 维护性,鲁棒性, 和可复用性都要好。 它支持JUnit和TestNG。Tellurium的测试代码可以用Java, Groovy和纯DSL脚本来写.
Tellurium由以下子项目构成:
CQ">
虽然Tellurium脱胎于Selenium,但两者在概念上有很大的不同。Selenium主要是用记录和重播(Record and Replay)模式,而Tellurium要求你首先定义待测的UI模块。下面列出Tellurium的一些主要概念:
Tellurium定义了一些常用的物件,如Button, Table, Form等。
Tellurium物件至少包含以下属性:
Tellurium物件 | Locator缺省属性 | 额外属性 | UI模板 |
Button | tag: "input" | ||
Container | group | ||
CheckBox | tag: "input", type: "checkbox" | ||
Div | tag: "div" | ||
Form | tag: "form" | group | |
Image | tag: "img" | ||
InputBox | tag: "input" | ||
RadioButton | tag: "input", type: "radio" | ||
Selector | tag: "select" | ||
Span | tag: "span" | ||
SubmitButton | tag: "input", type: "submit" | ||
UrlLink | tag: "a" | ||
List | separator | 可用 | |
Table | tag: "table" | group, header | 可用 |
StandardTable | tag: "table" | group, header, footer | 可用 |
Frame | group, id, name, title | ||
Window | group, id, name, title |
值得注意的是Tellurium物件大多为抽象物件,比如Container就可以实用于不同的HTML标签。每个Tellurium物件都有一个uid,即它的别名。