作者:鸡__腿孜然小朋友 | 来源:互联网 | 2023-07-15 11:27
我正在尝试将第一个自动化测试场景(Java,IntelliJ,Webdriver)编写为工作应用程序的一部分。
我收到了这样的“作业”指示:
打开浏览器和维基百科,
点击随机文章,
然后单击第一个链接,直到获得有关哲学的文章。计算重定向次数。
但是我为不正确的getTitle而苦恼,它返回了错误的值。首先,我认为这是因为重定向太快,所以我用Google搜索并尝试应用timeouts()。好吧,没有可用的等待类型正在起作用,并且由于根本没有超时,因此代码得以处理。我尝试了显式等待,以及drive.manage()。timeouts()...一直在工作。我还尝试在getTitle和getcurrentURL上构建测试,并且都返回错误的值。
System.setProperty(“ webdriver.chrome.driver”,“ ...”);
WebDriver驱动程序=新的ChromeDriver();
driver.get("https://en.wikipedia.org/");
driver.manage().window().maximize();
driver.findElement(By.linkText("Random article")).click();
String expectedTitle = "Philosophy - Wikipedia";
String currentTitle = driver.getTitle();
String expectedURL = "https://en.wikipedia.org/wiki/Philosophy";
String currentURL = driver.getcurrentUrl();
System.out.println(currentURL);
WebElement searchBox;
searchBox = driver.findElement(By.id("searchInput"));
searchBox.sendKeys("Philosophy");
driver.findElement(By.id("searchButton")).click();
WebDriverWait wait = new WebDriverWait(driver,30);
wait.until(ExpectedConditions.titleIs(expectedTitle)); // this one gets ignored
System.out.println(currentTitle); // returns title of the Random article
System.out.println(currentURL); // returns URL of the Random article
if (currentURL.equalsIgnoreCase(expectedURL)){
System.out.println("Test Passed!");
} else {
System.out.println("Test Failed");
System.out.println(currentURL);
任何想法可能有什么问题以及如何解决?