我试图从 IntelliJ 运行下面的代码,但又出现错误(如下)。我只想使用 Xpath 定位器单击网站上的按钮并添加断言来验证我的测试。构建如此简单的测试的最佳方法是什么?
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.testng.annotations.Test;
import java.util.List;
public class ButtonTest extends CommonScenario {
private static WebDriver driver;
@Test()
public void button_test() {
button b = driver.findElements(By.xpath("//button[text()='Teleworking"));
}
错误:
Error:(16, 5) java: cannot find symbol
symbol: class button
location: class selenium.ButtonTest
互换的青春
慕尼黑的夜晚无繁华
PIPIONE
相关分类