上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: 1)请确保 IEDriverServer 的可执行文件在系统环境变量PATH 中2)在IE7 和以上版本的Internet Explorer 上,必须确保保护模式的正确配置。设置方式为 Tools->Internet Options->Security。每个不同的Zone 的ProtectedMod... 阅读全文
posted @ 2015-06-03 14:54 *飞飞* 阅读(852) 评论(0) 推荐(0)
摘要: ChromeDriver 在不指定任何参数的情况下,启动监听端口会随机变化。如果需要保证其端口固定不变,可通过ChromeDriverService 打的目的public class testChromeService{ public static void main(String[] args)... 阅读全文
posted @ 2015-05-29 15:54 *飞飞* 阅读(4364) 评论(0) 推荐(0)
摘要: Chrome Options 类似于FirefoxProfiles,用于定制待测试的Chrome 浏览器的特定属性1)如果希望测试某个浏览器插件,可通过addExtensions方式提前加载以.crx 为扩展名的插件2)如果希望Chrome 浏览器启动时附带启动参数,可通过addArguments ... 阅读全文
posted @ 2015-05-29 15:46 *飞飞* 阅读(1352) 评论(0) 推荐(0)
摘要: 由于Chrome Driver 只兼容Chrome 浏览器12.0.712.0 和之后的新版本,会因此如果要在老版本的Chrome 浏览器上使用Selenium, 则只能使用 SeleniumRC来完成任务,示例代码:URL seleniumRC = new URL("http://localhos... 阅读全文
posted @ 2015-05-29 15:40 *飞飞* 阅读(614) 评论(0) 推荐(0)
摘要: //导入Selenium 库和 ChromeDriver 库pachage com.learningselenium.simplewebdriver;import java.util.concurrent.TimeUnit;import org.openqa.selenium.By;import o... 阅读全文
posted @ 2015-05-29 15:35 *飞飞* 阅读(778) 评论(0) 推荐(0)
摘要: //导入Selenium 库和FirefoxDriver 库package com.learningselenium.simplewebdriver;import org.openqa.selenium.*;import org.openqa.selenium.firefox.FirefoxDriv... 阅读全文
posted @ 2015-05-29 15:22 *飞飞* 阅读(848) 评论(0) 推荐(0)
摘要: 可通过FirefoxBinary 来指定运行某个路径下的Firefox, 示例代码如下:public class testFirefoxBinary{ public static void main(String[] args){ FirefoxBinary firefoxBinary = ... 阅读全文
posted @ 2015-05-29 15:15 *飞飞* 阅读(306) 评论(0) 推荐(0)
摘要: FirefoxProfile 用于定制待测试的Firefox 浏览器的特定属性,其中包括所存储的密码、书签、历史信息、Cookies等。某些测试用例需要用到特定的用户信息,因此可通过定制当前Firefox 运行实例的FirefoxProfile 来达到目标1)如果需要查看当前Firefox 运行实例... 阅读全文
posted @ 2015-05-29 15:11 *飞飞* 阅读(1078) 评论(0) 推荐(0)
摘要: java: WebElement el = page.getTable_AssetMixesName().get(index); Actions action = new Actions(driver); action.doubleClick(el); action.sendKeys(name).b 阅读全文
posted @ 2015-05-22 17:07 *飞飞* 阅读(706) 评论(0) 推荐(0)
摘要: 为配合较为广泛使用Java 语言的程序员,仅以WebDriver 的Java语言绑定进行讲解。步骤1:下载并安装Java开发环境1)在系统中安装JDK(Java开发工具吧,Java Development Kit)注意: 这里安装的是JDK,而不是单纯的JRE(Java运行时环境,Java Run... 阅读全文
posted @ 2015-05-21 16:13 *飞飞* 阅读(3683) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 下一页