1.自己电脑上有Firefox,最好路径是默认安装的。
2.去selenium 官网下载http://docs.seleniumhq.org/download/
选择自己想要的IDE,一般都是最新的,点Download latest released version后面的版本号就可以了。
允许,然后安装所有的插件。
安装完之后在Firefox->>工具 最下方有一个Selenium IDE 这说明selenium已经成功安装。
3.一般我们用selenium不仅仅是录制用到IDE,还会用到RC来查看代码,我自己用的是java,所以下载了java的selenium-server-standalone-2.37.0.jar,然后在eclipse上选好的文件下右键,选Build Path>>Add External Archives把selenium-server-standalone-2.37.0.jar文件选中上传。
4.当我们点开selenium IDE的窗口的时候我们会看看到有录制的按钮,要注意的是如果你想查看录制后的java
代码,选在selenium IDE->>Options下面给选项“Enable experimental features”前面打勾。
5.打开selenium IDE(默认录制按钮在打开的时候已经是开始的),访问一个www.baidu.com,点击音乐,输入test进行搜索,然后点击完成按钮,完成录制,这个时候我们会到看到一个Command等相关的图,
这个时候我们再去选Options->>Format->>Java/Junit4/WebDriver,确定以后会看到刚刚录制过成生成的对应java代码。
package com.example.tests;
import java.util.regex.Pattern;
import java.util.concurrent.TimeUnit;
import org.junit.*;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.Select;
public class Untitled {
private WebDriver driver;
private String baseUrl;
private boolean acceptNextAlert = true;
private StringBuffer verificationErrors = new StringBuffer();
@Before
public void setUp() throws Exception {
driver = new FirefoxDriver();
baseUrl = "http://www.baidu.com/";
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
@Test
public void testUntitled() throws Exception {
driver.get(baseUrl + "/");
driver.findElement(By.linkText("音乐")).click();
driver.findElement(By.id("ww")).sendKeys("test");
}
@After
public void tearDown() throws Exception {
driver.quit();
String verificationErrorString = verificationErrors.toString();
if (!"".equals(verificationErrorString)) {
fail(verificationErrorString);
}
}
private boolean isElementPresent(By by) {
try {
driver.findElement(by);
return true;
} catch (NoSuchElementException e) {
return false;
}
}
private boolean isAlertPresent() {
try {
driver.switchTo().alert();
return true;
} catch (NoAlertPresentException e) {
return false;
}
}
private String closeAlertAndGetItsText() {
try {
Alert alert = driver.switchTo().alert();
String alertText = alert.getText();
if (acceptNextAlert) {
alert.accept();
} else {
alert.dismiss();
}
return alertText;
} finally {
acceptNextAlert = true;
}
}
}
相关推荐
Python+Selenium+Unittest环境搭建详解 Python+Selenium+Unittest环境搭建是自动化测试中的一种重要组件,本文将详细介绍如何搭建Python+Selenium+Unittest环境,并解决在搭建过程中可能遇到的问题。 一、安装...
Selenium+Eclipse+Junit+TestNG 搭建自动化测试框架,包括安装 JDK、Eclipse、Selenium IDE、Selenium RC、IEDriverServer、Selenium Client Drivers、Firefox、Firebug、Xpath checker 和 Xpath finder 等工具,并...
1、Testng+selenium+Maven+WebDriver+Java+eclipse 实现禅道登录,百度搜索。 2、eclipse需安装Testng+selenium+Maven 3、下载对应版本的WebDriver驱动。Chrome驱动下载地址...
终极自动化测试环境搭建:Selenium+Eclipse+Junit+TestNG+Python 本文旨在指导读者搭建一个终极自动化测试环境,利用 Selenium+Eclipse+Junit+TestNG+Python 实现自动化测试。下面是详细的搭建过程: 一、安装 JDK...
selenium+python+pycharm环境搭建文档selenium+python+pycharm环境搭建文档selenium+python+pycharm环境搭建文档
### Selenium+Python自动化...通过以上步骤,您可以成功搭建起基于Selenium和Python的自动化测试环境,并能够编写和运行简单的自动化测试脚本来验证网站的功能。这不仅有助于提高测试效率,还可以确保应用程序的质量。
Selenium 终极自动化测试环境搭建需要完成以上七个步骤,包括安装 JDK、下载 Eclipse 和 Selenium 相关组件、下载 Firefox、安装插件、启动 SeleniumRC 服务器和在 Eclipse 中执行 Selenium 的 Java 实例。
首先,标题中的“selenium+eclipse开发需要的所有jar包”指的是Selenium WebDriver与Eclipse开发环境所需的库文件。Selenium WebDriver是一个API,它允许通过编写代码来控制浏览器并进行自动化操作。这些jar包包含了...
基于python+pytest+Selenium+allure,完成web自动化测试框架的搭建,并可以在jenkins上持续集成,应用于课堂派web自动化测试项目中,取得良好效果 软件开发设计:应用软件开发、系统软件开发、移动应用开发、网站开发...
selenium+firefox+eclipse+pydev安装
文档讲述selenium + python自动化测试环境搭建,可做参考并且请大家多提出宝贵意见!
通过以上步骤,我们成功地搭建了Selenium 3与Python 3的自动化测试环境,并实现了一个简单的搜索功能。这个基础环境可以帮助我们快速开始Web应用的自动化测试工作。在实际项目中,还可以结合其他工具和技术(如持续...
### Selenium+Eclipse+JUnit+TestNG自动化测试学习笔记 #### 一、环境搭建与配置 ...通过上述步骤和技巧,可以有效地搭建起基于Selenium+Eclipse+JUnit+TestNG的自动化测试环境,并实现高效的Web应用测试。