SilkTest学习17-Link Tester 软件测试
SilkTest提供一个工具Link Tester,你可以用它来识别网页或者是网站上的问题链接。只要指定了想要检查的web页面地址,想要检查的链接层数,link tester就会替你自动遍历页面上的每一个link,并且检查他们是否有问题。
Link Tester在测试网页的时候会帮你节省很多时间,你可以通过SilkTest IDE上的提供Link Tester的工具来进行link的检测,也可以使用Help里面提到的方法,在test case中自动调用link tester
view plaincopy to clipboardprint?
01.[-] testcase TestHomePage() appstate none
02. [ ] List of String ls
03. [ ] ls = ReturnLinkData ("http://silktest.blogspot.com/","http://silktest.blogspot.com/", 1)
04. [ ] ListPrint (ls)
05.[ ]
06.[-] List of string ReturnLinkData(String sBaseURL, String sIncDomains, Integer iDepth)
07. [ ] LINKTESTERINFO lit
08. [ ]
09. [ ] List of String ls
10. [ ] //Populate the LINKTESTERINFO structure with the passed in data
11. [ ] lit.sBaseURL = sBaseURL
12. [ ] lit.sIncludeDomains = sIncDomains
13. [ ] lit.iDepth = iDepth
14. [ ] ls = RunLinkTester (lit)
15. [ ] return ls
文章来源于领测软件测试网 https://www.ltesting.net/