0
でTestNGのファイルを実行していない私は私のMavenプロジェクトでTestNGのスクリプトを持っていますが、私はmvn test
を実行すると、そのスクリプトが実行されていないは、Mavenの
pom.xmlファイル
ここ<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>xgen</groupId>
<artifactId>smart_collect</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>smart_collect</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.5.3</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
私のスクリプトは、テストパッケージであります
package test;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class Login {
public static WebDriver driver;
public String baseUrl;
@BeforeMethod
public void beforeMethod() throws Exception {
//System.setProperty("webdriver.chrome.driver", "chromedriver_win32\\chromedriver.exe");
//driver = new ChromeDriver();
System.setProperty("webdriver.gecko.driver", "geckodriver-v0.18.0-win64\\geckodriver.exe");
driver = new FirefoxDriver();
baseUrl = "https://www.google.lk/";
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
}
@Test
public void login() throws Exception {
driver.get(baseUrl);
driver.findElement(By.xpath("//input[@value='Google Search']")).click();
}
@AfterMethod
public void afterMethod() {
driver.quit();
}
}
私のフォルダ構造
私のMavenの出力
は、この出来事がある理由を知っている必要があります。これはtestNGで実行するとうまくいきます