上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
摘要: driver.get("http://1.com");driver.navigate().to("http://2.com");driver.navigate().refresh();driver.navigate().back(); //1.comdriver.navigate().forw... 阅读全文
posted @ 2015-06-04 15:49 *飞飞* 阅读(308) 评论(0) 推荐(0)
摘要: WebDriver 提供了一系列 Cookies 的操作来获取、填写、删除 Cookies 的方法,节省了多次在登陆页面的查找元素并填写登录信息的时间。1)获取 Cookies ,并保存到文件中以备后续使用:package com.learningselenium.normalwebdriver;i... 阅读全文
posted @ 2015-06-04 13:03 *飞飞* 阅读(406) 评论(0) 推荐(0)
摘要: driver.manage().window.maximize(); 阅读全文
posted @ 2015-06-04 12:31 *飞飞* 阅读(254) 评论(0) 推荐(0)
摘要: 以如下页面为例:http://sislands.com/coin70/week1/dialogbox.htm示例代码:pachage com.learningselenium.normalwebdriver;import org.junit.After;import org.junit.Before... 阅读全文
posted @ 2015-06-04 12:30 *飞飞* 阅读(943) 评论(0) 推荐(0)
摘要: 1)验证标题 package com.learningselenium.normalwebdriver; import static org.junit.Assert.*; import java.util.Set; import org.junit.After; import org.junit. 阅读全文
posted @ 2015-06-04 12:07 *飞飞* 阅读(838) 评论(0) 推荐(0)
摘要: InternetExplorerDriver 在不指定任何参数的情况下,启动监听端口会随机变化。如果需要保证其端口固定不变,可通过InternetExplorerDriverService 达到目的。示例代码:public class testInternetExplorerService{ pu... 阅读全文
posted @ 2015-06-04 11:46 *飞飞* 阅读(1870) 评论(1) 推荐(0)
摘要: 自从 IE7 引入 Protected Mode 以来, IE 浏览器的安全性的确得到了一定程度的提高。其原理从本质来讲,在浏览某些需要启用保护模式的页面时,会开启一个新的浏览器会话以完成任务,而此时你无法控制前一个会话中的 COM 对象。随之而来的问题是,WebDriver 在这种情况下会遇到如下... 阅读全文
posted @ 2015-06-04 11:38 *飞飞* 阅读(1678) 评论(0) 推荐(0)
摘要: public static boolean isAlertPresent(WebDriver driver) { try { driver.switchTo().alert(); return true; } catch (NoAlertPresentException... 阅读全文
posted @ 2015-06-04 10:11 *飞飞* 阅读(387) 评论(0) 推荐(0)
摘要: private static final String JQUERY_ACTIVE_CONNECTIONS_QUERY = "return $.active == 0;";private static ExpectedCondition noActiveConnections = new Expe... 阅读全文
posted @ 2015-06-04 10:06 *飞飞* 阅读(190) 评论(0) 推荐(0)
摘要: 在使用IEDriverServer 可执行文件时,从理论上来说是可通过它来创建并使用多个同时存在的Internet Explorer Driver 实例的。但在实际使用过程中,总是会碰到与 cookie 相关的问题、窗口焦点的问题、浏览器多实例等可能会面临的问题。如果真想希望使用Internet E... 阅读全文
posted @ 2015-06-03 15:07 *飞飞* 阅读(804) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 下一页