Watir -- Web自动化UI测试的框架

发表于:2010-07-07来源:作者:点击数: 标签:自动化框架webWebWEB
Watir -- Web自动化UI测试的框架 软件测试 Watir,Web ApplicationTestingin Ruby . 它是Ruby语言下,一个自动化UI测试的框架。对于Watir的 测试框架 ,它对于ActiveX插件, Java Applets, Flash, 或者其他的插件应用程序基本不支持。如何确定您测试的页面

  Watir -- Web自动化UI测试的框架  软件测试

  Watir,Web ApplicationTestinginRuby. 它是Ruby语言下,一个自动化UI测试的框架。对于Watir的测试框架,它对于ActiveX插件,JavaApplets, Flash, 或者其他的插件应用程序基本不支持。如何确定您测试的页面是否Watir支持,只要您在页面中右击出现View Source 选项,那么Waitr就基本支持。Watir还带有AutoIt扩展对Javascript弹出或者其他的弹出窗口。

  在Watir中的对象包括Hyperlinks, Checkboxes, Buttons, Forms, Radio buttons, Selection boxes, Text fields, Frames, Images, Tables等等。我们可以使用 ie.show_all_objects来显示页面中的所有元素,当我们无法确定页面对象是否被选中时可以使用flash方法,比如 ie.text_field(:name, “test_text”).flash。以下的对象属性对于Watir的使用非常有用。比如 name,id,index,value,URL(links),Alt,SRC(images)。

  以下是Watir对于页面的一些操作:

  Hyperlinks

  ie.link(:text, "link_name").click

  Checkboxes

  ie.checkbox(:name, “checkbox_name”, “value”).set

  ie.checkbox(:name, "checkbox_name").set

  ie.checkbox(:name, "checkme").clear

  Radio buttons

  ie.radio(:name, "clickme").set

  ie.radio(:name, “radio_name”, “value”).set

  ie.radio(:name, "clickme").clear

  Selection boxes

  ie.select_list( :name , "select_list_name").select("select_option")

  ie.select_list( :name , "selectme").clearSelection

  Text fields

  ie.text_field(:name, "field_name").set("Watir World")

  ie.text_field(:name, "typeinme").clear

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