在ie上使用xpath时selenium运行缓慢
摘要:
除了ie,其他主要浏览器都是内置对xpath的支持的,但ie不行,所以selenium 使用了javascript库,默认使用的是ajaxslt,所以会很慢。解决办法是更换默认的xpath版本库,使用javascript-xpath例如: selenium=newDefaultSelenium(location,port,browser,targetPath); selenium.start();selenium.useXpathLibrary("javascript-xpath");另外,写xpath时尽量从一个具有id的元素开始,这样也可以大大提高执行速度 阅读全文
posted @ 2011-04-14 11:22 张飞_ 阅读(1984) 评论(2) 推荐(0) 编辑