qileilove

blog已经转移至github,大家请访问 http://qaseven.github.io/

Selenium WebDriver施用经验杂记

 利用Javascript注入,来读取不同Ajax调用框架的Ajax request status,一直等到Ajax调用全部返回才开始分析操作Dom元素
  演示代码如下:
protected void syncAjaxByJQuery(String timeout) {
boolean isSucceed = false;
try {
selenium.waitForCondition(
"selenium.browserbot.getCurrentWindow().jQuery.active == 0", timeout);
isSucceed = true;
} catch (SeleniumException se) {
LOG.error(se);
} catch (Exception re) {
throw new RuntimeException(re.getMessage());
}
operationCheck(isSucceed);
}
protected void syncAjaxByPrototype(String timeout) {
boolean isSucceed = false;
try {
selenium.waitForCondition(
"selenium.browserbot.getCurrentWindow().Ajax.activeRequestCount == 0",
timeout);
isSucceed = true;
} catch (SeleniumException se) {
LOG.error(se);
} catch (Exception re) {
throw new RuntimeException(re.getMessage());
}
operationCheck(isSucceed);
}
protected void syncAjaxByDojo(String timeout) {
boolean isSucceed = false;
try {
selenium.waitForCondition(
"selenium.browserbot.getCurrentWindow().dojo.io.XMLHTTPTransport.inFlight.length == 0",
timeout);
isSucceed = true;
} catch (SeleniumException se) {
LOG.error(se);
} catch (Exception re) {
throw new RuntimeException(re.getMessage());
}
operationCheck(isSucceed);
}
Other Tips
  加载IEDriver的时候,通常会因为兼容模式的设置问题,而无法启动,尝试在创建IEDriver对象的时候,加入合适的参数设置:
DesiredCapabilities ieCapabilities = DesiredCapabilities.internetExplorer();
ieCapabilities.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true);
return new InternetExplorerDriver(ieCapabilities);

posted on 2014-03-14 11:01 顺其自然EVO 阅读(351) 评论(0)  编辑  收藏 所属分类: selenium and watir webdrivers 自动化测试学习


只有注册用户登录后才能发表评论。


网站导航:
 
<2014年3月>
2324252627281
2345678
9101112131415
16171819202122
23242526272829
303112345

导航

统计

常用链接

留言簿(55)

随笔分类

随笔档案

文章分类

文章档案

搜索

最新评论

阅读排行榜

评论排行榜