我在我的代码中得到了这个:
mainWindowHandle = driver.getWindowHandle();
wait = new WebDriverWait(driver, Long.parseLong(getData("WaitTime")));
但我一直遇到这个编译问题:
1) mainWindowHandle cannot be resloved to a variable
2) wait cannot be resolved to a variable
我输入了:
import org.openqa.selenium.support.ui.*;
import org.openqa.selenium.support.ui.WebDriverWait;
为什么我一直得到这个编译错误?