我想验证站点中的菜单栏选项卡,以确认这些选项卡名称与应使用的名称完全相同并进行打印。
我尝试使用linkText()
进行此操作,但我不知道如何验证它们。
public class Automate2 {
public static void main(String[] args) {
System.setProperty("webdriver.gecko.driver","geckodriver.exe");
WebDriver driver = new FirefoxDriver();
driver.get("https://www.toolsqa.com/");
driver.manage().window().maximize();
driver.findElement(By.linkText("Home"));
}
}
答案 0 :(得分:2)
请尝试代码中提到的任何断言。但是,我的代码已在chrome上运行,而不是在Firefox上运行,但断言方法相同。
json_decode
请让我知道代码是否有效。