简介
WatiN-Watir的.NET版:
WelcomeattheWatiN(pronouncedasWhat-in)website.InspiredbydevelopmentofWatiNstartedinDecember2005tomakeasimilarkindofWebApplicationTestingpossibleforthe.Netlanguages.SincethenWatiNhasgrownintoaneasytouse,featurerichandstableframework.WatiNisdevelopedinC#andaimstobringyouaneasywaytoautomateyourtestswithInternetExplorerandFireFoxusing.Net.
目前最新版本:WatiN2.0RC1
支持的测试环境:
WindowsXP | WindowsVista | Windows2003 | Windows2008 | |
IE6 | OK | - | - | - |
IE7 | OK | - | - | OK |
IE8 | OK | - | - | - |
Firefox2 | OK | - | - | - |
Firefox3 | OK | - | - | OK |
WatiN的脚本录制器-WatiNTestRecorder:
.0beta版本需要IE7以上
WatiNvs.SeleniumRC
Item | WatiN | SeleniumRC |
ExplorerSupported | Knownwork IE6andIE7 | Knownwork IE6andIE7 Firefox1.5.0and2.0 Opera8.5.4and9.0.2 Shouldwork Firefox0.8to2.0 MozillaSuite1.6+,1.7+ Seamonkey1.0 |
Systemsupported | Knownwork XPand2003 | Knownwork XPand2003 Windows2000(needtoinstallinstallreg.exeinordertouseIE) MacOSX Linux |
Languagesupported | Perl PHP Python Ruby | |
Testenvironmentsupported | VisualStudio2005TeamSystem | VisualStudio2005TeamSystem |
AJAX | SupportsAJAXwebsitetesting | lSeleniumServercommunicatesdirectlywiththebrowserusingAJAX(XmlHttpRequest) lTheSeleniumServerisgreatfortestingcomplexAJAX-basedwebuserinterfacesunderaContinuousIntegrationsystem |
Get/Postrequests | WecansendcommandsdirectlytotheServerusingsimpleHTTPGET/POSTrequests | |
Httpssupported | Supportforhttps | |
scrīptSupported | VoidDocument.Runscrīpt(string) | lWecanwriteseleniumRCtestsinJavascrīptwithJsUnit. litAllowsaSelenium-enabledbrowsertorunJavascrīptonarbitrarywebsites. |
HTML | AutomatesallmajorHTMLelementsandfindelementsbymultipleattributes | |
HTMLdialogs | SupportsHTMLdialogs(modalandmodeless) | |
Frame | Supportsframe(Crossdomain)andiframes | |
Popupdialogs | Supportspopupdialogslikealert,confirm,loginetc | |
Screenshots | Supportcreatingscreenshotsofwebpages | |
对现有控件的兼容性不好。比如文件上传控件和日历控件就无法在SeleniumRC中捕捉2.不支持https连接方式?? http://bbs.51testing.com/thread-84131-1-6.html |
DevelopingInfo
Item | WatiN | SeleniumRC |
DevelopingLanguage | Javaandsoon |
MethodsExample
Item | WatiNExample | SeleniumRCExample |
Setelement event | Document.button(Find.ById(btnG”)).click() | DefaultSelenium.Type(“q”,”helloworld”) |
Getelementattributes | Document.button(Find.ById(btnG”)).Style.Height | DefaultSelenium.GetElementHeight(“q”) |
especialmethods | Thenwecan’thanlethetimeusedforpagesloading. ===》 Link[1].Click() Link(Find.ByIndex(1)).Click() Wecanusethesetwomethodstoclickthelinksthatthevalueisnull. | WaitForPageToLoad(“5000”) (ifwewanttogotoanotherpageandgettheelementsinthenewpage,wehavetousethemethod,orwewillintheoldpage.) 《==Wecan’tfindthelinksthatthevalueisnull |
WatiN测试Google的例子
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Text;
usingWatiN.Core;
usingSystem.Threading;
namespaceConsoleApplication1
{
classProgram
{
[STAThread]
staticvoidMain(string[]args)
{
//OpenanewInternetExplorerwindowand
//gotothegooglewebsite.
IEie=newIE("http://www.google.com.hk",true);
//FindthesearchtextfieldandtypeWatininit.
ie.TextField(Find.ByName("q")).TypeText("WatiN");
//ClicktheGooglesearchbutton.
ie.Button(Find.ByValue("Google搜索")).Click();
//Uncommentthefollowinglineifyouwanttoclose
//InternetExplorerandtheconsolewindowimmediately.
//ie.Close();
}
}
}
获取页面元素内容:
//OpenannewInternetExplorerWindowand
//gotothegooglewebsite.
IEie=newIE("http://www.google.com.hk",true);
//FindthesearchtextfieldandtypeWatininit.
ie.TextField(Find.ByName("q")).TypeText("WatiN");
//ClicktheGooglesearchbutton.
ie.Button(Find.ByValue("Google搜索")).Click();
//Findthetablecellwhichshowsthesearchresultstatistics.
Elementelement=ie.Element(Find.By("id","resultStats"));
stringresultStats=element.Text;
//Writethesestatisticstotheconsolewindow.
Console.WriteLine(resultStats);
//Uncommentthefollowinglineifyouwanttoclose
//InternetExplorerandtheconsolewindowimmediately.
//ie.Close();
参考:
GettingstartedwithWatiN
WatiNandThread.ApartmentState
WatiN支持的页面元素
Htmlelement | WatiNClass | WatiNCollection | Example | Version |
<a/> | Link | LinkCollection | Ie.Link(linkId) | 0.7 |
<area/> | Area | AreaCollection | ie.Area(Find.ByAlt(alttext)) | 1.2 |
<button/> | Button | ButtonCollection | Ie.Button(buttonId) | 0.9 |
<div/> | Div | DivCollection | Ie.Div(divId) | 0.7 |
<form/> | Form | FormCollection | Ie.Form(formId) | 0.7 |
<frame/> | Frame | FrameCollection | Ie.Frame(frameId) | 0.7 |
<frameset/> | - | FrameCollection | Ie.Frames | 0.7 |
<iframe/> | Frame | FrameCollection | Ie.Frame(iframeId) | 0.9 |
<img/> | Image | ImageCollection | Ie.Image(p_w_picpathId) | 0.7 |
<inputtype=button/> | Button | ButtonCollection | Ie.Button(buttonId) | 0.7 |
<inputtype=checkbox/> | CheckBox | CheckBoxCollection | Ie.CheckBox(checkboxId) | 0.7 |
<inputtype=file/> | FileUpload | FileUploadCollection | Ie.FileUpload(fileuploadId) | 0.9 |
<inputtype=hidden/> | TextField | TextFieldCollection | Ie.TextField(hiddenId) | 0.7 |
nolongersupportedasof2.0beta1 | ||||
<inputtype=p_w_picpath/> | Image | ImageCollection | Ie.Image(p_w_picpathId) | 0.9.5 |
<inputtype=password/> | TextField | TextFieldCollection | Ie.TextField(passwordId) | 0.7 |
<inputtype=radio/> | RadioButton | RadioButtonCollection | Ie.RadioButton(radioId) | 0.7 |
<inputtype=reset/> | Button | ButtonCollection | Ie.Button(resetId) | 0.7 |
<inputtype=submit/> | Button | ButtonCollection | Ie.Button(submitId) | 0.7 |
<inputtype=text/> | TextField | TextFieldCollection | Ie.TextField(textId) | 0.7 |
<label/> | Label | LabelCollection | Ie.Label(elementId) | 0.7 |
<option/> | Option | OptionCollection | Ie.Select(selectId).Options | 1.0 |
<p/> | Para | ParaCollection | Ie.Para(pId) | 0.7 |
<select/> | Select | SelectCollection | Ie.Select(selectId) | 0.7 |
<span/> | Span | SpanCollection | Ie.Span(spanId) | 0.7 |
<table/> | Table | TableCollection | Ie.Table(tableId) | 0.7 |
<tbody/> | TableBody | TableBodyCollection | Ie.TableBody(tablebodyId) Ie.Table(tableid).TableBodies | 1.0 |
<td/> | TableCell | TableCellCollection | Ie.TableCell(tablecellId)or Ie.Table(TableId).TableRows[0].TableCells[0] | 0.7 |
<textarea/> | TextField | TextFieldCollection | Ie.TextField(textareaId) | 0.7 |
<tr/> | TableRow | TableRows | Ie.TableRow(tablerowId)or Ie.Table(TableId).TableRows[0] | 0.7 |
Allelements,alsotheonesnotmentionedinthislist | Elementand ElementsContainer | ElementCollection | Ie.Element(elementId) Ie.Element(tagname,elementId) | 0.9 1.2 |
HTMLMappingTable
WatiN中所有的控件以及控件的识别方法
在WatiN的源代码中可以看到所有的控件识别设计类都是在继承了与element相关的类
包括Element,ElementAttributeBag,ElementCollection,ElementContainer,ElementSupport,ElementTag。
首先来看Element的类可以看到它继承IAttributeBag类,在Elemental类中写到的方法有:
1.Classname:Getthenameofthestylesheetclassassignedtothiselement;得到传输给此控件默认格式类的名称。返回值为string.
2.Complete:BooleanValue,Getavalueindicatingwhethertheelementiscompletelyloaded;得到一个波尔值,查看是否此对当前控件的操作完全加载。返回值为波尔值.
3.Enabled:GetaValueindicatingwhetherthiselementisenabled.得到一个波尔值来确认当前的控件是否是可用的.返回值为波尔值.
4.ID:GettheifofthiselementasspecifiedintheHTML,返回当前控件在此HTML页面中的识别ID,返回值为string。
5.TEXT:Gettheinnertextofthiselement(oralltheinnertextofalltheelementscontainedinthiselment).返回当前控件中的文本,或者是返回当前控件所包含的控件中的所有文本,返回值为string.
6.TextBefore:Returnsthetextdisplayedbeforethiselementwhenit’swrappedinaLabelelement,otherwiseitreturnsnull.返回当前控件前面的Label的文本内容,如果当前控件前面的控件不是Label则返回null,返回值为string.
7.InnerHtml:GetstheinnerHTMLofthiselement.返回当前控件的内部HTML代码。返回值不用说当然为string.
8.OuterText:Getstheoutertext,返回外部文档,返回值为string.
Shit,这个控件我还真不知道怎么用,呵呵。查了一下解释如下:
InnerText:不包括标志,标志以内的纯文本
OuterText:包括标志,连标记及标志内的文本
InnerHtml:不包括标志,标志以内的Html内容
OuterHtml:包括标志,连标记及标志内的Html内容
9.TagName:Getsthetagnameofthiselement返回当前控件的标签。返回值为string.
10.Title:Getthetitle.返回当前页面的标题。返回值为stieng.
11.NextSibling:GetsthenextsiblingofthiselementintheDomoftheHTMLpage.返回当前标签在此HTML页面Dom控件中的下一个兄弟控件。返回值为控件即(element)
12.PreviousSibling:GetstheprevioussiblingofthiselementintheDomoftheHTMLpage.返回当前标签在此HTML页面Dom控件中的下一个兄弟控件,返回值为控件即(element)。
13.Parent:Getstheparentelementofthiselement,Iftheparenttypeisknownyoucancastittothattype.返回当前控件的父级控件,如果父级的控件类型知道,可以定义一个和父级同类型的变量控件。返回类型为控件(element).这个比较难理解,下面是举例:
Div
aid="watinlink"href="http://watin.sourceforge.net"/
ahref="http://sourceforge.net/projects/watin"/
Div
上面的HTML所示第二个超链接没有id,如何点击它来实现超链接?这时可以使用Parent这个方法:
首先定义一个变量Div,然后把这两个超链接所在的div赋值给这个Division变量。
DivwatinDiv=ie.Link(“watinlink”).Parent;
然后去找第二个Link,可以把第一个Link看做是Links[0],那么第二个Link就是Link[1]
watinDiv.Links[1].Click();
14.Style:Styleistheelement’sstyle,返回当前控件的格式。返回类型为Style.
15.GetAttributeValue:Thismethodcanbeusedistheattributeisnotavailableasapropertyoftheelementofasubclassoftheelement.Needaparameter’attributeName’,thisparametershouldbethenameofthepropertyexposedbyIEonit’selementobject.Thereturnisthevalueoftheattributeifavailable,otherwisenullisreturned.当控件的属性不存在或者或者属性属于此控件的一个子类时此方法可以使用。但是需要传递给此方法一个参数即属性名称(它应该是被IE暴露的一个空间实体),返回值为控件的属性值或者为null.
16.ToString:Returnsastringthatrepresentsthecurrentobject,ornull.返回代表当前实体的值,如果没有则返回空。返回类型为string.
17.Click:Clickthiselementandwaitstilltheeventiscompletelyfinished(Pageisloadedandready).点击当前控件然后等待,知道整个事件完成即:页面被完全加载。无返回值.
18.ClickNoWait:Clickthisinstanceandreturnsimmediately.Usethismethodwhenyouwanttocontinuewithoutwaitingfortheclickeventtobefinished.MostlyusedwhenaHTMLDialogisdisplayedafterclickingtheelement.触发事件并立刻返回信息然后去判断需要如何执行,通常是在点击或者跳转页面还没完成时你需要其它操作。一般情况下是在当弹出对话框时使用这个方法。无返回值。
19.Focus:Givestheinputfocustothiselement.聚焦在当前这个输入控件,我不是很明白这个方法。无返回值。
20.DoubleClick:Doubleclicksthiselement.双击当前的控件。无返回值。
21.KeyDown,KeyPress,KeyUp三个方法分别为按下键盘不放,按一下键盘,和松开按键盘。很绕口.这个应该是从.Net继承的。
22.Blur:Firestheblureventonthiselement.这个应该是和focus相反的方法。取消对这个控件的focus.
WatiN中常用的类
WatiN.Core.Find
最普遍使用的类就是Find类的,它是一个工厂类,主要使用它的静态方法来实现一些查询条件。比如像上面的例子中的这个语句“ie.Button(Find.ByName("btnG")).Click();”就调用了Find的静态方法ByName来查询一个name属性为指定值的HTML元素,然后再调用IE对象的Button方法把这个元素转换为按钮对象。
WatiN.Core.IE
这应该是最关键的类了。他常用的方法是和属性为属性HtmlDialogs返回当前对象用JavaScript打开的模式窗口(需然帮助文档中说非模式窗口也包括在内,但在试用中发现用window.open打开的窗口没有被)Frames返回当前的象里的所有Frames方法静态方法AttachToIE与一个已经找开的IE关连。Button,TextField,Image,Div等一系列方法。与Find对象共同使用用于返回IE中特定的按钮,输入框,等HTML元素。
WatiN应用中的一些技巧
1、如何去捕获一个新弹出的窗口。
背景:有些链接是从一个新弹出的窗口中打开的,我如果关连上这类型的窗口。
方案:下面以一个具体例子为例。系统中有一个登陆界面:login.aspx登陆成功能后会调用JAVASCRIPT的window.open方法打开系统的主窗口,然后关闭当前这个窗login.aspx。刚开始时,我的代码是这样写的publicvoidLogin(stringuid,stringpasswd){ stringurl=Host+"login.aspx";ie=newIE();ie.GoTo(url);ie.WaitForComplete();ie.TextField(Find.ById("txtUserName")).Value=uid;ie.TextField(Find.ById("txtPwd")).Value=passwd;ie.Button(Find.ById("btnLogin")).Click;//注意这里,我每次执行到这里都出错。下面会说明原因。ie=IE.AttachToIE(Find.ByTitle(newWatiN.Core.Comparers.RegexComparer(newSystem.Text.RegularExpressions.Regex(".*综合信息系统.*"))));ie.WaitForComplete();MainFrame=ie.Frame(Find.ByName("MainFrame_00001"));MenuFrame=ie.Frame(Find.ById("leftMenu"));}看到上面的注译没有?那么执行完后WatiN都会出现一个等待完成超时的异常,这是因为点击了登陆按钮后,如果登陆成功的话,系统已经把这个窗口关闭了,因为它根本不可能完成。呵呵~~```所以要修改一下。publicvoidLogin(stringuid,stringpasswd){ stringurl=Host+"frmlogon.aspx";ie=newIE();ie.GoTo(url);ie.WaitForComplete();ie.TextField(Find.ById("txtUserName")).Value=uid;ie.TextField(Find.ById("txtPwd")).Value=passwd;ie.Button(Find.ById("btnLogin")).ClickNoWait();//这个方法改成这样,那点击后就不会等代码IE完成了。//下面这句就是处理登陆的技巧所在,系统打开了另一个窗口。//下面这句就是用正则表达式捕获这个窗口。ie=IE.AttachToIE(Find.ByTitle(newWatiN.Core.Comparers.RegexComparer(newSystem.Text.RegularExpressions.Regex(".*综合信息系统.*"))));ie.WaitForComplete();MainFrame=ie.Frame(Find.ByName("MainFrame_00001"));MenuFrame=ie.Frame(Find.ById("leftMenu"));//把系统里的Frame先保存下来。}2、对于alert、confirm等javascript弹出的窗口的捕获。
背景:一个系统经常会使用以上这些javascript来弹出一些提示信息,如果捕获这些窗口,并模拟用户点击这些窗口上的OK或Cancel按钮?方案:其实WatiN在默认情况下,都会自动地去点击这些弹出式窗口上的Cancel按钮的,但如果用户要明确点击哪些事件的话可以对IE对象增加一个“查看器”()//错误事例protectedvoidf(){ WatiN.Core.DialogHandlers.ConfirmDialogHandlerdh=newWatiN.Core.DialogHandlers.ConfirmDialogHandler();ie.AddDialogHandler(dh);//这句增加了一个控制器/**//*假设yzp_dic_btn_cls这个按钮的onclick事件会用JS弹出一个Confirm窗口。错误,测会在这里弹出一个窗口,然后等待用户进行操作(随便点击一个按钮才继续执行)然后因为用户已经点击了按钮关闭弹出窗口。下一句的dh.WaitUntilExists(3);将会超时,抛出异常*/doc.Button(Find.ByName("yzp_dic_btn_cls")).Click();dh.WaitUntilExists(3);//等待弹出窗口的出来。最多等三秒。dh.OKButton.Click();//点击这个窗口的OK按钮ie.RemoveDialogHandler(dh);doc.Button(Find.ByName("btn_close")).Click();}正确的示例应该是:protectedvoidf(){ WatiN.Core.DialogHandlers.ConfirmDialogHandlerdh=newWatiN.Core.DialogHandlers.ConfirmDialogHandler();ie.AddDialogHandler(dh);doc.Button(Find.ByName("yzp_dic_btn_cls")).ClickNoWait();//把原来的Click改成这个方法。dh.WaitUntilExists(3);//等待弹出窗口的出来。最多等三秒。dh.OKButton.Click();//点击这个窗口的OK按钮ie.RemoveDialogHandler(dh);doc.Button(Find.ByName("btn_close")).Click();}
v\:*{url(#default#VML);}o\:*{url(#default#VML);}w\:*{behavior:url(#default#VML);}.shape{behavior:url(#default#VML);}< /p>
简介
WatiN-Watir的.NET版:
WelcomeattheWatiN(pronouncedasWhat-in)website.InspiredbydevelopmentofWatiNstartedinDecember2005tomakeasimilarkindofWebApplicationTestingpossibleforthe.Netlanguages.SincethenWatiNhasgrownintoaneasytouse,featurerichandstableframework.WatiNisdevelopedinC#andaimstobringyouaneasywaytoautomateyourtestswithInternetExplorerandFireFoxusing.Net.
目前最新版本:WatiN2.0RC1
支持的测试环境:
WindowsXP | WindowsVista | Windows2003 | Windows2008 | |
IE6 | OK | - | - | - |
IE7 | OK | - | - | OK |
IE8 | OK | - | - | - |
Firefox2 | OK | - | - | - |
Firefox3 | OK | - | - | OK |
WatiN的脚本录制器-WatiNTestRecorder:
2.0beta版本需要IE7以上
WatiNvs.SeleniumRC
Item | WatiN | SeleniumRC |
ExplorerSupported | Knownwork IE6andIE7 | Knownwork IE6andIE7 Firefox1.5.0and2.0 Opera8.5.4and9.0.2 Shouldwork Firefox0.8to2.0 MozillaSuite1.6+,1.7+ Seamonkey1.0 |
Systemsupported | Knownwork XPand2003 | Knownwork XPand2003 Windows2000(needtoinstallinstallreg.exeinordertouseIE) MacOSX Linux |
Languagesupported | Perl PHP Python Ruby | |
Testenvironmentsupported | VisualStudio2005TeamSystem | VisualStudio2005TeamSystem |
AJAX | SupportsAJAXwebsitetesting | lSeleniumServercommunicatesdirectlywiththebrowserusingAJAX(XmlHttpRequest) lTheSeleniumServerisgreatfortestingcomplexAJAX-basedwebuserinterfacesunderaContinuousIntegrationsystem |
Get/Postrequests | WecansendcommandsdirectlytotheServerusingsimpleHTTPGET/POSTrequests | |
Httpssupported | Supportforhttps | |
scrīptSupported | VoidDocument.Runscrīpt(string) | lWecanwriteseleniumRCtestsinJavascrīptwithJsUnit. litAllowsaSelenium-enabledbrowsertorunJavascrīptonarbitrarywebsites. |
HTML | AutomatesallmajorHTMLelementsandfindelementsbymultipleattributes | |
HTMLdialogs | SupportsHTMLdialogs(modalandmodeless) | |
Frame | Supportsframe(Crossdomain)andiframes | |
Popupdialogs | Supportspopupdialogslikealert,confirm,loginetc | |
Screenshots | Supportcreatingscreenshotsofwebpages | |
对现有控件的兼容性不好。比如文件上传控件和日历控件就无法在SeleniumRC中捕捉2.不支持https连接方式?? http://bbs.51testing.com/thread-84131-1-6.html |
DevelopingInfo
Item | WatiN | SeleniumRC |
DevelopingLanguage | Javaandsoon |
MethodsExample
Item | WatiNExample | SeleniumRCExample |
Setelement event | Document.button(Find.ById(btnG”)).click() | DefaultSelenium.Type(“q”,”helloworld”) |
Getelementattributes | Document.button(Find.ById(btnG”)).Style.Height | DefaultSelenium.GetElementHeight(“q”) |
especialmethods | Thenwecan’thanlethetimeusedforpagesloading. ===》 Link[1].Click() Link(Find.ByIndex(1)).Click() Wecanusethesetwomethodstoclickthelinksthatthevalueisnull. | WaitForPageToLoad(“5000”) (ifwewanttogotoanotherpageandgettheelementsinthenewpage,wehavetousethemethod,orwewillintheoldpage.) 《==Wecan’tfindthelinksthatthevalueisnull |
WatiN测试Google的例子
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Text;
usingWatiN.Core;
usingSystem.Threading;
namespaceConsoleApplication1
{
classProgram
{
[STAThread]
staticvoidMain(string[]args)
{
//OpenanewInternetExplorerwindowand
//gotothegooglewebsite.
IEie=newIE("http://www.google.com.hk",true);
//FindthesearchtextfieldandtypeWatininit.
ie.TextField(Find.ByName("q")).TypeText("WatiN");
//ClicktheGooglesearchbutton.
ie.Button(Find.ByValue("Google搜索")).Click();
//Uncommentthefollowinglineifyouwanttoclose
//InternetExplorerandtheconsolewindowimmediately.
//ie.Close();
}
}
}
获取页面元素内容:
//OpenannewInternetExplorerWindowand
//gotothegooglewebsite.
IEie=newIE("http://www.google.com.hk",true);
//FindthesearchtextfieldandtypeWatininit.
ie.TextField(Find.ByName("q")).TypeText("WatiN");
//ClicktheGooglesearchbutton.
ie.Button(Find.ByValue("Google搜索")).Click();
//Findthetablecellwhichshowsthesearchresultstatistics.
Elementelement=ie.Element(Find.By("id","resultStats"));
stringresultStats=element.Text;
//Writethesestatisticstotheconsolewindow.
Console.WriteLine(resultStats);
//Uncommentthefollowinglineifyouwanttoclose
//InternetExplorerandtheconsolewindowimmediately.
//ie.Close();
参考:
GettingstartedwithWatiN
WatiNandThread.ApartmentState
WatiN支持的页面元素
Htmlelement | WatiNClass | WatiNCollection | Example | Version |
<a/> | Link | LinkCollection | Ie.Link(linkId) | 0.7 |
<area/> | Area | AreaCollection | ie.Area(Find.ByAlt(alttext)) | 1.2 |
<button/> | Button | ButtonCollection | Ie.Button(buttonId) | 0.9 |
<div/> | Div | DivCollection | Ie.Div(divId) | 0.7 |
<form/> | Form | FormCollection | Ie.Form(formId) | 0.7 |
<frame/> | Frame | FrameCollection | Ie.Frame(frameId) | 0.7 |
<frameset/> | - | FrameCollection | Ie.Frames | 0.7 |
<iframe/> | Frame | FrameCollection | Ie.Frame(iframeId) | 0.9 |
<img/> | Image | ImageCollection | Ie.Image(p_w_picpathId) | 0.7 |
<inputtype=button/> | Button | ButtonCollection | Ie.Button(buttonId) | 0.7 |
<inputtype=checkbox/> | CheckBox | CheckBoxCollection | Ie.CheckBox(checkboxId) | 0.7 |
<inputtype=file/> | FileUpload | FileUploadCollection | Ie.FileUpload(fileuploadId) | 0.9 |
<inputtype=hidden/> | TextField | TextFieldCollection | Ie.TextField(hiddenId) | 0.7 |
nolongersupportedasof2.0beta1 | ||||
<inputtype=p_w_picpath/> | Image | ImageCollection | Ie.Image(p_w_picpathId) | 0.9.5 |
<inputtype=password/> | TextField | TextFieldCollection | Ie.TextField(passwordId) | 0.7 |
<inputtype=radio/> | RadioButton | RadioButtonCollection | Ie.RadioButton(radioId) | 0.7 |
<inputtype=reset/> | Button | ButtonCollection | Ie.Button(resetId) | 0.7 |
<inputtype=submit/> | Button | ButtonCollection | Ie.Button(submitId) | 0.7 |
<inputtype=text/> | TextField | TextFieldCollection | Ie.TextField(textId) | 0.7 |
<label/> | Label | LabelCollection | Ie.Label(elementId) | 0.7 |
<option/> | Option | OptionCollection | Ie.Select(selectId).Options | 1.0 |
<p/> | Para | ParaCollection | Ie.Para(pId) | 0.7 |
<select/> | Select | SelectCollection | Ie.Select(selectId) | 0.7 |
<span/> | Span | SpanCollection | Ie.Span(spanId) | 0.7 |
<table/> | Table | TableCollection | Ie.Table(tableId) | 0.7 |
<tbody/> | TableBody | TableBodyCollection | Ie.TableBody(tablebodyId) Ie.Table(tableid).TableBodies | 1.0 |
<td/> | TableCell | TableCellCollection | Ie.TableCell(tablecellId)or Ie.Table(TableId).TableRows[0].TableCells[0] | 0.7 |
<textarea/> | TextField | TextFieldCollection | Ie.TextField(textareaId) | 0.7 |
<tr/> | TableRow | TableRows | Ie.TableRow(tablerowId)or Ie.Table(TableId).TableRows[0] | 0.7 |
Allelements,alsotheonesnotmentionedinthislist | Elementand ElementsContainer | ElementCollection | Ie.Element(elementId) Ie.Element(tagname,elementId) | 0.9 1.2 |
HTMLMappingTable
WatiN中所有的控件以及控件的识别方法
在WatiN的源代码中可以看到所有的控件识别设计类都是在继承了与element相关的类
包括Element,ElementAttributeBag,ElementCollection,ElementContainer,ElementSupport,ElementTag。
首先来看Element的类可以看到它继承IAttributeBag类,在Elemental类中写到的方法有:
1.Classname:Getthenameofthestylesheetclassassignedtothiselement;得到传输给此控件默认格式类的名称。返回值为string.
2.Complete:BooleanValue,Getavalueindicatingwhethertheelementiscompletelyloaded;得到一个波尔值,查看是否此对当前控件的操作完全加载。返回值为波尔值.
3.Enabled:GetaValueindicatingwhetherthiselementisenabled.得到一个波尔值来确认当前的控件是否是可用的.返回值为波尔值.
4.ID:GettheifofthiselementasspecifiedintheHTML,返回当前控件在此HTML页面中的识别ID,返回值为string。
5.TEXT:Gettheinnertextofthiselement(oralltheinnertextofalltheelementscontainedinthiselment).返回当前控件中的文本,或者是返回当前控件所包含的控件中的所有文本,返回值为string.
6.TextBefore:Returnsthetextdisplayedbeforethiselementwhenit’swrappedinaLabelelement,otherwiseitreturnsnull.返回当前控件前面的Label的文本内容,如果当前控件前面的控件不是Label则返回null,返回值为string.
7.InnerHtml:GetstheinnerHTMLofthiselement.返回当前控件的内部HTML代码。返回值不用说当然为string.
8.OuterText:Getstheoutertext,返回外部文档,返回值为string.
Shit,这个控件我还真不知道怎么用,呵呵。查了一下解释如下:
InnerText:不包括标志,标志以内的纯文本
OuterText:包括标志,连标记及标志内的文本
InnerHtml:不包括标志,标志以内的Html内容
OuterHtml:包括标志,连标记及标志内的Html内容
9.TagName:Getsthetagnameofthiselement返回当前控件的标签。返回值为string.
10.Title:Getthetitle.返回当前页面的标题。返回值为stieng.
11.NextSibling:GetsthenextsiblingofthiselementintheDomoftheHTMLpage.返回当前标签在此HTML页面Dom控件中的下一个兄弟控件。返回值为控件即(element)
12.PreviousSibling:GetstheprevioussiblingofthiselementintheDomoftheHTMLpage.返回当前标签在此HTML页面Dom控件中的下一个兄弟控件,返回值为控件即(element)。
13.Parent:Getstheparentelementofthiselement,Iftheparenttypeisknownyoucancastittothattype.返回当前控件的父级控件,如果父级的控件类型知道,可以定义一个和父级同类型的变量控件。返回类型为控件(element).这个比较难理解,下面是举例:
Div
aid="watinlink"href="http://watin.sourceforge.net"/
ahref="http://sourceforge.net/projects/watin"/
Div
上面的HTML所示第二个超链接没有id,如何点击它来实现超链接?这时可以使用Parent这个方法:
首先定义一个变量Div,然后把这两个超链接所在的div赋值给这个Division变量。
DivwatinDiv=ie.Link(“watinlink”).Parent;
然后去找第二个Link,可以把第一个Link看做是Links[0],那么第二个Link就是Link[1]
watinDiv.Links[1].Click();
14.Style:Styleistheelement’sstyle,返回当前控件的格式。返回类型为Style.
15.GetAttributeValue:Thismethodcanbeusedistheattributeisnotavailableasapropertyoftheelementofasubclassoftheelement.Needaparameter’attributeName’,thisparametershouldbethenameofthepropertyexposedbyIEonit’selementobject.Thereturnisthevalueoftheattributeifavailable,otherwisenullisreturned.当控件的属性不存在或者或者属性属于此控件的一个子类时此方法可以使用。但是需要传递给此方法一个参数即属性名称(它应该是被IE暴露的一个空间实体),返回值为控件的属性值或者为null.
16.ToString:Returnsastringthatrepresentsthecurrentobject,ornull.返回代表当前实体的值,如果没有则返回空。返回类型为string.
17.Click:Clickthiselementandwaitstilltheeventiscompletelyfinished(Pageisloadedandready).点击当前控件然后等待,知道整个事件完成即:页面被完全加载。无返回值.
18.ClickNoWait:Clickthisinstanceandreturnsimmediately.Usethismethodwhenyouwanttocontinuewithoutwaitingfortheclickeventtobefinished.MostlyusedwhenaHTMLDialogisdisplayedafterclickingtheelement.触发事件并立刻返回信息然后去判断需要如何执行,通常是在点击或者跳转页面还没完成时你需要其它操作。一般情况下是在当弹出对话框时使用这个方法。无返回值。
19.Focus:Givestheinputfocustothiselement.聚焦在当前这个输入控件,我不是很明白这个方法。无返回值。
20.DoubleClick:Doubleclicksthiselement.双击当前的控件。无返回值。
21.KeyDown,KeyPress,KeyUp三个方法分别为按下键盘不放,按一下键盘,和松开按键盘。很绕口.这个应该是从.Net继承的。
22.Blur:Firestheblureventonthiselement.这个应该是和focus相反的方法。取消对这个控件的focus.
QTP+WatiN
SetIE=DotNetFactory.CreateInstance("WatiN.Core.IE","C:\DocumentsandSettings\Administrator\桌面\WatiN-2.0.10.928-net-2.0\WatiN-2.0.10.928-net-2.0\bin\WatiN.Core.dll")
SetFind=DotNetFactory.CreateInstance("WatiN.Core.Find","C:\DocumentsandSettings\Administrator\桌面\WatiN-2.0.10.928-net-2.0\WatiN-2.0.10.928-net-2.0\bin\WatiN.Core.dll")IE.GoTo("")IE.WaitForCompleteIE.TextField(Find.ByName("searchkey")).TypeText("vbs测试webservice")IE.Button(Find.ByName("subjectsearch")).Click()SetIEpage=IE.AttachToIE(Find.ByUrl(""))SetLinkObj=IEpage.Link(Find.ByUrl(")IFLinkObj.ExistsThenLinkObj.Click()'IE.AttachToIE(Find.ByUrl(")SetConsoleObj=DotNetFactory.CreateInstance("System.Console","System")Consoleobj.Write("PASS")'Msgbox("PASS")elseMsgbox("FAILL")EndIfIE.CloseIEpage.CloseIE.AttachToIE(Find.ByUrl("WatiN中常用的类
WatiN.Core.Find
最普遍使用的类就是Find类的,它是一个工厂类,主要使用它的静态方法来实现一些查询条件。比如像上面的例子中的这个语句“ie.Button(Find.ByName("btnG")).Click();”就调用了Find的静态方法ByName来查询一个name属性为指定值的HTML元素,然后再调用IE对象的Button方法把这个元素转换为按钮对象。
WatiN.Core.IE
这应该是最关键的类了。他常用的方法是和属性为属性HtmlDialogs返回当前对象用JavaScript打开的模式窗口(需然帮助文档中说非模式窗口也包括在内,但在试用中发现用window.open打开的窗口没有被)Frames返回当前的象里的所有Frames方法静态方法AttachToIE与一个已经找开的IE关连。Button,TextField,Image,Div等一系列方法。与Find对象共同使用用于返回IE中特定的按钮,输入框,等HTML元素。
WatiN应用中的一些技巧
1、如何去捕获一个新弹出的窗口。
背景:有些链接是从一个新弹出的窗口中打开的,我如果关连上这类型的窗口。
方案:下面以一个具体例子为例。系统中有一个登陆界面:login.aspx登陆成功能后会调用JAVASCRIPT的window.open方法打开系统的主窗口,然后关闭当前这个窗login.aspx。刚开始时,我的代码是这样写的publicvoidLogin(stringuid,stringpasswd){ stringurl=Host+"login.aspx";ie=newIE();ie.GoTo(url);ie.WaitForComplete();ie.TextField(Find.ById("txtUserName")).Value=uid;ie.TextField(Find.ById("txtPwd")).Value=passwd;ie.Button(Find.ById("btnLogin")).Click;//注意这里,我每次执行到这里都出错。下面会说明原因。ie=IE.AttachToIE(Find.ByTitle(newWatiN.Core.Comparers.RegexComparer(newSystem.Text.RegularExpressions.Regex(".*综合信息系统.*"))));ie.WaitForComplete();MainFrame=ie.Frame(Find.ByName("MainFrame_00001"));MenuFrame=ie.Frame(Find.ById("leftMenu"));}看到上面的注译没有?那么执行完后WatiN都会出现一个等待完成超时的异常,这是因为点击了登陆按钮后,如果登陆成功的话,系统已经把这个窗口关闭了,因为它根本不可能完成。呵呵~~```所以要修改一下。publicvoidLogin(stringuid,stringpasswd){ stringurl=Host+"frmlogon.aspx";ie=newIE();ie.GoTo(url);ie.WaitForComplete();ie.TextField(Find.ById("txtUserName")).Value=uid;ie.TextField(Find.ById("txtPwd")).Value=passwd;ie.Button(Find.ById("btnLogin")).ClickNoWait();//这个方法改成这样,那点击后就不会等代码IE完成了。//下面这句就是处理登陆的技巧所在,系统打开了另一个窗口。//下面这句就是用正则表达式捕获这个窗口。ie=IE.AttachToIE(Find.ByTitle(newWatiN.Core.Comparers.RegexComparer(newSystem.Text.RegularExpressions.Regex(".*综合信息系统.*"))));ie.WaitForComplete();MainFrame=ie.Frame(Find.ByName("MainFrame_00001"));MenuFrame=ie.Frame(Find.ById("leftMenu"));//把系统里的Frame先保存下来。}2、对于alert、confirm等javascript弹出的窗口的捕获。
背景:一个系统经常会使用以上这些javascript来弹出一些提示信息,如果捕获这些窗口,并模拟用户点击这些窗口上的OK或Cancel按钮?方案:其实WatiN在默认情况下,都会自动地去点击这些弹出式窗口上的Cancel按钮的,但如果用户要明确点击哪些事件的话可以对IE对象增加一个“查看器”()//错误事例protectedvoidf(){ WatiN.Core.DialogHandlers.ConfirmDialogHandlerdh=newWatiN.Core.DialogHandlers.ConfirmDialogHandler();ie.AddDialogHandler(dh);//这句增加了一个控制器/**//*假设yzp_dic_btn_cls这个按钮的onclick事件会用JS弹出一个Confirm窗口。错误,测会在这里弹出一个窗口,然后等待用户进行操作(随便点击一个按钮才继续执行)然后因为用户已经点击了按钮关闭弹出窗口。下一句的dh.WaitUntilExists(3);将会超时,抛出异常*/doc.Button(Find.ByName("yzp_dic_btn_cls")).Click();dh.WaitUntilExists(3);//等待弹出窗口的出来。最多等三秒。dh.OKButton.Click();//点击这个窗口的OK按钮ie.RemoveDialogHandler(dh);doc.Button(Find.ByName("btn_close")).Click();}正确的示例应该是:protectedvoidf(){ WatiN.Core.DialogHandlers.ConfirmDialogHandlerdh=newWatiN.Core.DialogHandlers.ConfirmDialogHandler();ie.AddDialogHandler(dh);doc.Button(Find.ByName("yzp_dic_btn_cls")).ClickNoWait();//把原来的Click改成这个方法。dh.WaitUntilExists(3);//等待弹出窗口的出来。最多等三秒。dh.OKButton.Click();//点击这个窗口的OK按钮ie.RemoveDialogHandler(dh);doc.Button(Find.ByName("btn_close")).Click();}
3、关于用JS弹出的Modal窗口(模式窗口)的处理.
背景:有些地方需要弹出模式窗口来处理数据。方解:当点击了弹出模式窗口的按钮或连接后马上用IE对像的HtmlDialogs属生来获取模式窗口。protectedvoidf(){ //假设下面这行代码会弹出一个模式窗口把原来的Click改成这个方法。//记住这里要用ClickNoWait而不能用Click,否则在模式窗口关闭之前代码不会继续执行。ie.Button(Find.ByName("yzp_dic_btn_cls")).ClickNoWait();ie.HtmlDialogs[ie.HtmlDialogs.Length-1].TextField(Find.ByName("Q")).Value="Hello";ie.HtmlDialogs[ie.HtmlDialogs.Length-1].Button(Find.ByName("btn_query")).Click();}
WatiN插件–QAliber
Qaliber主页:
作者:BennyCohen
包括两个版本,其中QAliberTestDeveloper版本作为VS.NET的插件使用:
QAliberTestDeveloper(freeopensource)isaVisualStudioplug-in.
Createtestcasesasanintegralpartofyourdevelopmentsolution.
QAliberTestBuilder(freeopensource)isarobusttestingframeworkforcreatingandexecutingtestswithnocodingskills.
TestAndTry.com对这款工具的评价是“VeryFastGUIAutomationWithFreeQAliber”:
http://www.testandtry.com/2010/03/04/very-fast-gui-automation-with-free-qaliber/
主要特点:
Createtestcasesasanintegralpartofyourdevelopmentsolution.
CreateGUI/APIleveltestquick!
Record/PlayGUIautomation.
SupportsWin32/.NETforms/WPF/WEBGUItesting.
Runonallwindowsplatformswith.NETframework3.0andup(XP,Vista,Win7)
WriteC#/VB.netcode,usethe.NETframeworkcapabilities.
下载地址:
http://sourceforge.net/projects/qaliber/files/