0
我在Eclipse中使用Selenium WebDriver。如何正確檢查頁面標題?
我寫的方法來檢查標題是否顯示正確。下面是代碼:
class Check {
String text_to_found;
String reason;
Check (String t, String r) {
text_to_found=t;
reason=r;
}
public void check_title() {
try {
Assert.assertTrue("Title " + text_to_found + " not found", text_to_found.equals(reason));
} catch (AssertionError e) {
System.err.println("title not found: " + e.getMessage());
}
}
我有這樣的命令調用它:
它的工作原理正確Check title1 = new Check ("Title", driver.getTitle());
title1.check_title();
第一次。但是第二次(依此類推),如果我調用這個方法(對於新打開的窗口),它表示沒有找到標題,但我知道它是正確的。建議,代碼有什麼問題?