当我尝试编译testng.xml
文件时,出现以下错误
Error:(15, 27) java: cannot find symbol
symbol: method dependsOnMethod()
location: @interface org.testng.annotations.Test
答案 0 :(得分:1)
您必须使用双引号提供方法
@Test(dependsOnMethods="loginTest")
或
@Test (dependsOnMethods = { "loginTest" })
答案 1 :(得分:0)
您已编写了“ dependsOnMethod”而不是“ dependsOnMethods”。请检查