基于Selenium 2的自动化测试出版社:机械工业出版社副标题:从入门到精通出版年:2014-8-9页数:210定价:39.80装帧:平装ISBN:9787111467830简介本书向开发人员和测试人员展示了如何使用Selenium进行Web自动化测试。本书从自动化测试的特点娓娓道来,引出了主角S...
分类:
其他好文 时间:
2014-09-07 18:31:15
阅读次数:
185
ChromeOptions options=new ChromeOptions(); //options.addExtensions(new File("C:\\Agent.crx")); //加载扩展 //options.addArguments("user...
分类:
Web程序 时间:
2014-09-06 21:12:53
阅读次数:
298
FirefoxProfile firefoxProfile=new FirefoxProfile(new File("/Users/zhangminjie/Library/Application Support/Firefox/Profiles/y1qo9afq.default"));driver....
分类:
Web程序 时间:
2014-09-06 21:12:03
阅读次数:
279
public void uploadFile(String path) { //File file = new File("C:\\jacob-1.18-M2-x64.dll"); // System.setProperty(LibraryLoader.JACOB_DLL...
分类:
编程语言 时间:
2014-09-06 21:10:43
阅读次数:
431
大家在编写测试案例想查阅Selenium API说明时,可以查阅本文,否则请跳过! (注:这里API版本比较老,新版本的Selenium的API在这里不一定能找到。)Selenium API说明文档(转载自:http://wiki.javascud.org/display/springs/Sele....
在编写Selenium案例时,少不免是要用到XPath的,现在外面关于XPath使用的参考资料很多,下面我直接转一篇关于XPath使用的文档。如果对XPath不熟悉请参考下文,你不需要去百度/Google搜索关于XPath的资料,因为下面的内容已经足够你写测试时使用,如果你已熟悉XPath,本章大可...
分类:
其他好文 时间:
2014-09-03 22:37:07
阅读次数:
338
一.Selenium是什么?Selenium是ThroughtWorks公司一个强大的开源Web功能测试工具系列,本系列现在主要包括以下4款: 1.Selenium Core:支持DHTML的测试案例(效果类似数据驱动测试),它是Selenium IDE和Selenium RC的引擎。 2.Sele...
分类:
其他好文 时间:
2014-09-03 00:15:35
阅读次数:
272
出自:http://magustest.com/blog/automationtesting/webdriver-testng/Selenium 2 已经发布了一个多月,官方版本已经到了Selenium 2.3,并且在Google code里面可以找到2.4的下载。Selenium 2 最大的更新就...
分类:
Web程序 时间:
2014-09-01 12:22:33
阅读次数:
256
WordPress 的 rich text采用js,先让selenium切换到iframe中driver.switchTo().frame("content_ifr");然后执行JSWebElement editor = driver.findElement(By.tagName("body"));...
分类:
其他好文 时间:
2014-08-31 00:25:30
阅读次数:
374