-1
我有一個硒問題,似乎我不能在if/else語句之前使用WebDriverWait()
。 代碼:Selenium-WebDriverWait()在if/else語句之前不起作用?
WebDriver driver;
(new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {
public Boolean apply(WebDriver d) {
return d.getTitle().toLowerCase().contains("site name");
}
});
if(stuff!=false){
return "the good stuff"
}
else{
return "the bad stuff"
}
此代碼在任何其他地方,我似乎無法找到一種方法來解決這個問題。有沒有人有另一種方式做到這一點?
當你運行這段代碼時,錯誤/異常是什麼?將';'添加到'if/else'中的語句;我想這只是一個錯字。 – Faiz
是什麼讓你斷定你不能在if/else之前使用它。 – MxyL