TestNG执行测试方法test顺序依赖关系时报错?

在学习https://blog.csdn.net/u011541946/article/details/75330419这篇博客时,试着不加depends依赖关系,而是按照test顺序执行,报错:最多只能顺序执行前2条方法?

public class testDepend {
	private WebDriver driver;
  @Test
  public void openSougou() {
	     driver.get("https://www.sogou.com/");
		 
		
  }
  
  @Test
  public void switchFrame() throws InterruptedException {
	     driver.findElement(By.xpath("//*[@id=\"loginBtn\"]")).click();
		 driver.switchTo().frame(driver.findElement(By.xpath(("/html/body/div[1]/iframe"))));
		 driver.switchTo().frame("ptlogin_iframe");
		 driver.findElement(By.xpath("//*[@id=\"switcher_plogin\"]")).click();
		 Thread.sleep(1000);
  }
  
  @Test
  public void run1() throws InterruptedException {
	     
		 driver.findElement(By.xpath("//*[@id=\"u\"]")).clear();
		 driver.findElement(By.xpath("//*[@id=\"u\"]")).sendKeys("123");		
		 Thread.sleep(1000);
  }
  @Test
  public void run2() throws InterruptedException {
	     driver.findElement(By.xpath("//*[@id=\"p\"]")).clear();
		 driver.findElement(By.xpath("//*[@id=\"p\"]")).sendKeys("123");
  }
  
  
  
  @BeforeClass
  public void beforeClass() {
	  System.setProperty("webdriver.chrome.driver", ".\\tools\\chromedriver.exe");
	  driver=new ChromeDriver();
	  driver.manage().window().maximize();
  }

  @AfterClass
  public void afterClass() {
	  driver.quit();
  }

}

报错信息是不能找到第3个方法的xpath ID,此代码依赖关系练习时可以通过,求哪位大神解答!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值