SilkTest提供一个工具Link Tester,你可以用它来识别网页或者是网站上的问题链接。只要指定了想要检查的web页面地址,想要检查的链接层数,link tester就会替你自动遍历页面上的每一个link,并且检查他们是否有问题。
Link Tester在测试网页的时候会帮你节省很多时间,你可以通过SilkTest IDE上的提供Link Tester的工具来进行link的检测,也可以使用Help里面提到的方法,在test case中自动调用link tester
- [-] testcase TestHomePage() appstate none
- [ ] List of String ls
- [ ] ls = ReturnLinkData (“http://silktest.blogspot.com/”,”http://silktest.blogspot.com/”, 1)
- [ ] ListPrint (ls)
- [ ]
- [-] List of string ReturnLinkData(String sBaseURL, String sIncDomains, Integer iDepth)
- [ ] LINKTESTERINFO lit
- [ ]
- [ ] List of String ls
- [ ] //Populate the LINKTESTERINFO structure with the passed in data
- [ ] lit.sBaseURL = sBaseURL
- [ ] lit.sIncludeDomains = sIncDomains
- [ ] lit.iDepth = iDepth
- [ ] ls = RunLinkTester (lit)
- [ ] return ls
|