Selenium testng.xml文件编译问题

时间:2019-01-03 00:11:38

标签: selenium testng

当我尝试编译testng.xml文件时,出现以下错误

Error:(15, 27) java: cannot find symbol
  symbol:   method dependsOnMethod()
  location: @interface org.testng.annotations.Test

screenshot

2 个答案:

答案 0 :(得分:1)

您必须使用双引号提供方法

  @Test(dependsOnMethods="loginTest")

   @Test (dependsOnMethods = { "loginTest" })

答案 1 :(得分:0)

您已编写了“ dependsOnMethod”而不是“ dependsOnMethods”。请检查