如何使用shouldHave
断言在Selenide中检查页面标题?
在'Selenium'中它将是下一个代码:
Assert.assertEquals(title(), "Your page title");
答案 0 :(得分:2)
我没有在文档中找到任何代码示例,但下一个代码解决了我的问题:
$("title").shouldHave(attribute("text", "Your page title"));
答案 1 :(得分:2)
您可以使用Selenide.title()
方法来获取页面标题文本
答案 2 :(得分:0)
这将从页面中提取标题。
String tile= $(By.xpath("To your title tag")).innerText().toString();