gpt4 book ai didi

java - getTitle() 无法在 junit @test 注释中获取我的页面标题

转载 作者:行者123 更新时间:2023-12-01 14:51:05 24 4
gpt4 key购买 nike

你好,我是 selenium webdriver 的新手。我想验证 junit 测试中的页面标题。但是使用 getTitle() 我可以在 @before 中找到标题,但无法在 @Test 中找到标题。任何人都可以解决这个问题吗?问题。这是我的代码: 包junitTestCase;

    import java.util.concurrent.TimeUnit;

import junit.framework.TestCase;

import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ErrorCollector;
import org.openqa.selenium.By;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;


public class TestCase1 extends TestCase
{

public static WebDriver driver;

@Rule
public ErrorCollector er=new ErrorCollector();

@BeforeClass
public static void testDraiverConection()
{

driver=new FirefoxDriver();
}

@Before
public void testLogintoApp()
{
driver.get("http://127.0.0.1/login.do");
driver.findElement(By.name("username")).sendKeys("admin");
driver.findElement(By.name("pwd")).sendKeys("manager");
driver.findElement(By.xpath("//input[@type='submit']")).click();
driver.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS);


}
@Test
public void testTc1()
{

System.out.println("title is:" + driver.getTitle());
String expectedResult="actiTIME - Open Tasks";
String actualResult=driver.getTitle();
try
{
Assert.assertEquals(expectedResult,actualResult);
System.out.println("PASS "+expectedResult+"="+actualResult);
}
catch (Exception t)
{
er.addError(t);
System.out.println(t);
}

}
@Test
public void testTc2()
{
driver.findElement(By.xpath("//a[text()='Projects & Customers']")).click();
try{
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
catch(NoSuchElementException e){
er.addError(e);
}
String expectedResult="actiTIME - Active Projects & Customers";
String actualResult=driver.getTitle();
try
{
Assert.assertEquals(expectedResult,actualResult);
System.out.println("PASS "+expectedResult+"="+actualResult);
}
catch (Throwable t)
{
er.addError(t);
//System.out.print(e.getMessage());
}
}
@After
public void testLogout()
{

driver.findElement(By.xpath("//a/img[@alt='Logout']")).click();
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);

}

}

提前致谢

最佳答案

删除“扩展测试用例”

junit.framework 包下的类早于 JUnit 4。除非您所在的项目需要使用 JUnit3 样式的测试,否则您应该坚持使用 org.junit 下的 JUnit 类。在同一个测试文件中使用 junit.framework 和 org.junit 类可能会导致奇怪的行为。

关于java - getTitle() 无法在 junit @test 注释中获取我的页面标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14847019/

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