Study:Selenium 을 바탕 으로 fireforx 자동화 테스트 를 하 는 예 입 니 다.
3821 단어 자바testseleniumautomation
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hisky</groupId>
<artifactId>seleniumTest</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>seleniumTest</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.35.0</version>
</dependency>
</dependencies>
</project>
코드 사례:package com.hisky.seleniumTest;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.WebDriverWait;
/**
*
* @author zhenglin.yang
*
*/
public class WebTest {
public static void main(String[] args) {
// testSearch();
testLogin();
}
private static void testSearch() {
// System.setProperty ( "webdriver.firefox.driver" ,
// "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe" );
WebDriver driver = new FirefoxDriver();
driver.get("http://www.baidu.com");
WebElement element = driver.findElement(By.name("wd"));
element.sendKeys(" ");
element.submit();
(new WebDriverWait(driver, 20)).until(new ExpectedCondition<Boolean>() {
public Boolean apply(WebDriver d) {
return d.getTitle().toLowerCase().startsWith(" ");
}
});
System.out.println("Page title is: " + driver.getTitle());
// Close the browser
driver.quit();
}
private static void testLogin() {
// System.setProperty ( "webdriver.firefox.driver" ,
// "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe" );
WebDriver driver = new FirefoxDriver();
System.out.println("starts browser...");
driver.get("http://yun.baidu.com");
System.out.println("access login page...");
WebElement element = driver.findElement(By.name("userName"));
element.sendKeys("your user name...");
System.out.println("input user name...");
element = driver.findElement(By.name("password"));
element.sendKeys("your password...");
System.out.println("input password");
element.submit();
System.out.println("Page title is: " + driver.getTitle());
// Close the browser
driver.quit();
}
}
이상 의 내용 은 selenium 홈 페이지 튜 토리 얼 을 참고 합 니 다.fireforx 버 전 은 20 이상 이면 안 됩 니 다.그렇지 않 으 면 시작 할 수 없습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.