09 2016 档案
selenium第二课(脚本录制seleniumIDE的使用)
摘要:一、Selenium也具有录制功能,可以web中回放,录制的脚本可以转换为java、python、ruby、php等多种脚本语言。seleniumIDE是Firefox的一个插件,依附于Firefox,所以需要先安装Firefox浏览器。 二、Firefox官方下载地址:http://www.fir 阅读全文
posted @ 2016-09-25 22:06 古丶灬月 阅读(25377) 评论(0) 推荐(0)
selenium第一课(selenium+java+testNG+maven)
摘要:selenium介绍和环境搭建 一、简单介绍 1.selenium:Selenium是一个用于Web应用程序测试的工具。Selenium测试直接运行在浏览器中,就像真正的用户在操作一样。支持的浏览器包括IE、Mozilla Firefox、Chrome等。支持自动录制动作和自动生成,Net、Java 阅读全文
posted @ 2016-09-19 15:29 古丶灬月 阅读(18571) 评论(4) 推荐(4)
The path to the driver executable must be set by the webdriver.gecko.driver system property
摘要:报这个错,是因为你使用了selenium3+Firefox。在selenium3中,使用Firefox,需要添加驱动。 您可以从Github上下载驱动程序下载网址- https://github.com/mozilla/geckodriver/releases/tag/v0.9.0 在代码中加入 S 阅读全文
posted @ 2016-09-06 15:41 古丶灬月 阅读(6687) 评论(1) 推荐(1)