我想验证站点的菜单栏选项卡,而不是单击它们

时间:2019-01-26 18:11:51

标签: java selenium automation

我想验证站点中的菜单栏选项卡,以确认这些选项卡名称与应使用的名称完全相同并进行打印。 我尝试使用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"));
  }
}

1 个答案:

答案 0 :(得分:2)

请尝试代码中提到的任何断言。但是,我的代码已在chrome上运行,而不是在Firefox上运行,但断言方法相同。

json_decode

请让我知道代码是否有效。