会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
*飞飞*
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
6
7
8
9
10
11
12
下一页
2015年6月3日
[Selenium] 配置 Internet Explorer Driver 的注意事项
摘要: 1)请确保 IEDriverServer 的可执行文件在系统环境变量PATH 中2)在IE7 和以上版本的Internet Explorer 上,必须确保保护模式的正确配置。设置方式为 Tools->Internet Options->Security。每个不同的Zone 的ProtectedMod...
阅读全文
posted @ 2015-06-03 14:54 *飞飞*
阅读(852)
评论(0)
推荐(0)
2015年5月29日
[Selenium] 如何使ChromeDriver 每次启动的端口不会随机变化
摘要: ChromeDriver 在不指定任何参数的情况下,启动监听端口会随机变化。如果需要保证其端口固定不变,可通过ChromeDriverService 打的目的public class testChromeService{ public static void main(String[] args)...
阅读全文
posted @ 2015-05-29 15:54 *飞飞*
阅读(4364)
评论(0)
推荐(0)
[Selenium] 如何使用Chrome Options 定制测试Chrome 浏览器的特定属性 (类似FirefoxProfiles)
摘要: Chrome Options 类似于FirefoxProfiles,用于定制待测试的Chrome 浏览器的特定属性1)如果希望测试某个浏览器插件,可通过addExtensions方式提前加载以.crx 为扩展名的插件2)如果希望Chrome 浏览器启动时附带启动参数,可通过addArguments ...
阅读全文
posted @ 2015-05-29 15:46 *飞飞*
阅读(1352)
评论(0)
推荐(0)
[Selenium] 如何在老版本的Chrome 浏览器上使用selenium
摘要: 由于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] 使用Chrome Driver 的示例
摘要: //导入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] 使用Firefox Driver 示例
摘要: //导入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)
[Selenium] 测试机器上安装了多个Firefox,如何指定运行哪一个?
摘要: 可通过FirefoxBinary 来指定运行某个路径下的Firefox, 示例代码如下:public class testFirefoxBinary{ public static void main(String[] args){ FirefoxBinary firefoxBinary = ...
阅读全文
posted @ 2015-05-29 15:15 *飞飞*
阅读(306)
评论(0)
推荐(0)
[Selenium] 使用自定义的FirefoxProfile
摘要: FirefoxProfile 用于定制待测试的Firefox 浏览器的特定属性,其中包括所存储的密码、书签、历史信息、Cookies等。某些测试用例需要用到特定的用户信息,因此可通过定制当前Firefox 运行实例的FirefoxProfile 来达到目标1)如果需要查看当前Firefox 运行实例...
阅读全文
posted @ 2015-05-29 15:11 *飞飞*
阅读(1078)
评论(0)
推荐(0)
2015年5月22日
[Selenium] Actions.doubleClick
摘要: 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)
2015年5月21日
[Selenium] Selenium WebDriver 的下载和安装
摘要: 为配合较为广泛使用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
下一页
公告