51Testing软件测试论坛

标题: selenium link 怎么定位某一页面上很多link 并验证 [打印本页]

作者: jieer213    时间: 2010-8-10 18:06
标题: selenium link 怎么定位某一页面上很多link 并验证
需求:打开某个页面,该页面有很多静态链接,需要校验这些link是否正确(能正常打开不显示404或者其他提示信息即可)。这些link会定期更新。
自己写的代码:
        # link to the first sponsor link in the sidebar(用xpath定位页面的link区域,不止一个link)
        link_xpath = "div[2]/div[2]/div[2]/div/div/h1"
                
        # selenium doesn't support opening links in a new window. So will open the url directly.
        # first get the url
        url = sel.get_attribute(link_xpath + "/@href")
        # then open the page
        sel.open(url)
       # make sure we are not seeing an error
        self.assertTrue(sel.get_title().find(u"500内部服务器错误") < 0)
运行总报错:

File "d:\daodao\dealhome.py", line 25, in test_untitled
   url = sel.get_attribute(link_xpath + "/@href")
File "C:\Python26\lib\site-packages\selenium-2.0_dev_9341-py2.6.egg\selenium\s
lenium\selenium.py", line 1339, in get_attribute
   return self.get_string("getAttribute", [attributeLocator,])
File "C:\Python26\lib\site-packages\selenium-2.0_dev_9341-py2.6.egg\selenium\s
lenium\selenium.py", line 216, in get_string
   result = self.do_command(verb, args)
File "C:\Python26\lib\site-packages\selenium-2.0_dev_9341-py2.6.egg\selenium\s
lenium\selenium.py", line 212, in do_command
   raise Exception, data
xception: ERROR: Element /html/body/div[2]/div[2]/div[2]/div/div/h1/ not found

---------------------------------------------------------------------


个人分析,我感觉是xpath定位有问题,各位大侠帮忙看看,感谢
作者: jieer213    时间: 2010-8-10 18:11
补充说明,我在用这个的时候,是在firebug上选中link 然后单击右键,复制xpath这样得到的

link_xpath = "div[2]/div[2]/div[2]/div/div/h1"

不知道这样是正确的吗
作者: 小米啊    时间: 2010-8-11 10:30
for c <selenium.getXpathcount("//a")
url=//a[c]@href
open url

不知道这样行否呢




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2