gpt4 book ai didi

java - TestNg 没有运行带有 'driver.find' 的 @test 注释,但仅适用于 'syso-printing

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:21:35 25 4
gpt4 key购买 nike

我在使用 TestNg 启动新包时遇到了问题。请注意,我已经简化了代码以试图找出我哪里出错了。在 @Test(priority=3) 我遇到了问题。它不允许我点击按钮。

我已经检查了编译器并运行 1.8,这很好。

我检查了我之前的项目,该项目运行良好,但没有发现任何差异。我还有我的依赖项,它们是 maven、selenium、testng,看起来不错。我导入了很好的库。

更重要的是 TestNg 在我过去的项目中表现出色,可能是一个月前在同一台计算机和所有东西上。

package com.Prod.dtx_project;

import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeSuite;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;


public class DIF1v2 {

protected WebDriver driver;

@Test(priority=1)
public void initialization()
{
// To set the path of the Chrome driver.
System.setProperty("webdriver.chrome.driver", "C:\\Program Files\\Eclipes\\ChromeDriver\\chromedriver.exe");
}

@Test(priority=2)
public void OpenBrowserChrome ()
{
// Create a new instance of the Chrome driver
WebDriver driver = new ChromeDriver();
//WebDriver driver = new InternetExplorerDriver();
driver.get("https://testng.org/doc/index.html");
// To maximize the browser
driver.manage().window().maximize();
// implicit wait
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
// Print a Log In message to the screen
System.out.println("Successfully opened the website ");

driver.findElement(By.xpath("//*[@id='topmenu']/table/tbody/tr[2]/td[1]/a")).click();

}

@Test(priority=3) //IT FAILED HERE WHEN USING A NEW ANNOTATION//
public void Issue ()
{
driver.findElement(By.xpath("/html/body/a[13]")).click();

}

@Test(priority=4)
public void LandingPage ()
{
System.out.println("LandingPage-4");

}

@Test(priority=5)
private void publ()
{
System.out.println("publ-5");
}



}

这是我的testng.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">

<suite name="Suite">

<test name="Regression Testing">
<classes>
<class name="com.Prod.dtx_project.DIF1v2"/>
</classes>
</test>

</suite>

此外,这是我在控制台中收到的错误消息 -

FAILED: Issue
java.lang.NullPointerException
at com.Prod.dtx_project.DIF1v2.Issue(DIF1v2.java:49)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.testng.internal.MethodInvocationHelper.invokeMethod
(MethodInvocationHelper.java:124)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:580)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:716)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:988)
at org.testng.internal.TestMethodWorker.invokeTestMethods
(TestMethodWorker.java:125)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109)
at org.testng.TestRunner.privateRun(TestRunner.java:648)
at org.testng.TestRunner.run(TestRunner.java:505)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:455)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:450)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:415)
at org.testng.SuiteRunner.run(SuiteRunner.java:364)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:84)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1208)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1137)
at org.testng.TestNG.runSuites(TestNG.java:1049)
at org.testng.TestNG.run(TestNG.java:1017)
at org.testng.remote.AbstractRemoteTestNG.run
(AbstractRemoteTestNG.java:114)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
===============================================
Default test
Tests run: 5, Failures: 1, Skips: 0
===============================================

我预计它会打开 url 并单击此页面上的 eclipse 按钮​​,但它没有。

请注意:当我在@Test(priority=2) 中移动 driver.get 和 driver.findElement 时,它就可以工作了。请看下面。但是,如何使用此布局运行我的 TestNG。为什么这行得通,但是当使用多个 @Test 注释时它会失败。

@Test(priority=2)
public void OpenBrowserChrome ()
{
// Create a new instance of the Chrome driver
WebDriver driver = new ChromeDriver();
//WebDriver driver = new InternetExplorerDriver();
driver.get("https://testng.org/doc/index.html");
// To maximize the browser
driver.manage().window().maximize();
// implicit wait
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
// Print a Log In message to the screen
System.out.println("Successfully opened the website ");


driver.get("https://testng.org/doc/index.html");
driver.findElement(By.xpath("//*[@id='topmenu']/table/tbody/tr[2]/td[1]/a")).click();



}

最佳答案

它在 driver.get 语句中给出空指针,因为您没有在 priority=3 测试中初始化 driver
每个测试的范围都不同,因此您需要在每个要使用它的测试中对其进行初始化。

在 priority=2 中,你已经使用 driver = new ChromeDriver(); 初始化了它,所以同样你需要在 priority=3 测试中初始化它,然后你需要执行 driver.get(url) 它会起作用。

你的测试 2 和测试 3 应该是这样的:

@Test(priority=2)
public void OpenBrowserChrome()
{
WebDriver driver = new ChromeDriver();
driver.get("https://testng.org/doc/index.html");
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
System.out.println("Successfully opened the website ");
driver.findElement(By.xpath("//[@id='topmenu']/table/tbody/tr[2]/td[1]/a")).click();
driver.quit();

}

@Test(priority=3)
public void Issue() throws InterruptedException
{
WebDriver driver = new ChromeDriver();
driver.get("https://testng.org/doc/index.html");
driver.findElement(By.xpath("//[@id='topmenu']/table/tbody/tr[2]/td[1]/a")).click();
Thread.sleep(5000);
driver.findElement(By.xpath("/html/body/a[13]")).click();
driver.quit();

}

如果你想像 test3 一样连续点击两个元素,你需要创建一个驱动程序的单独实例而不是 test2 的实例,然后再次点击 url 然后你需要点击元素。在上面的场景中,你可以去掉test2,因为它目前实际上并没有为你解决任何目的,你可以在test3中执行这两个操作。

关于java - TestNg 没有运行带有 'driver.find' 的 @test 注释,但仅适用于 'syso-printing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54580449/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com