Added ExpectedConditions import
This commit is contained in:
parent
16db4f13ee
commit
0c2f207c7b
|
@ -4,8 +4,8 @@ import org.openqa.selenium.By;
|
||||||
import org.openqa.selenium.WebDriver;
|
import org.openqa.selenium.WebDriver;
|
||||||
import org.openqa.selenium.WebElement;
|
import org.openqa.selenium.WebElement;
|
||||||
import org.openqa.selenium.htmlunit.HtmlUnitDriver;
|
import org.openqa.selenium.htmlunit.HtmlUnitDriver;
|
||||||
//import org.openqa.selenium.support.ui.ExpectedCondition;
|
|
||||||
import org.openqa.selenium.support.ui.WebDriverWait;
|
import org.openqa.selenium.support.ui.WebDriverWait;
|
||||||
|
import org.openqa.selenium.support.ui.ExpectedCondition;
|
||||||
import org.testng.Assert;
|
import org.testng.Assert;
|
||||||
import org.testng.annotations.AfterClass;
|
import org.testng.annotations.AfterClass;
|
||||||
import org.testng.annotations.BeforeClass;
|
import org.testng.annotations.BeforeClass;
|
||||||
|
@ -37,7 +37,7 @@ public class BasicTest {
|
||||||
//driver.findElement(By.xpath("//input[@name='login']")).sendKeys("system");
|
//driver.findElement(By.xpath("//input[@name='login']")).sendKeys("system");
|
||||||
//driver.findElement(By.xpath("//input[@name='password']")).sendKeys("system");
|
//driver.findElement(By.xpath("//input[@name='password']")).sendKeys("system");
|
||||||
//driver.findElement(By.xpath("//input[@name='doLogin']")).submit();
|
//driver.findElement(By.xpath("//input[@name='doLogin']")).submit();
|
||||||
WebDriverWait waitForLoginDone = new WebDriverWait(browser, 15);
|
WebDriverWait waitForLoginDone = new WebDriverWait(driver, 15);
|
||||||
//waitForLoginDone.until(ExpectedConditions.ElementIsVisible(By.xpath("//input[@class='menu'][0]"));
|
//waitForLoginDone.until(ExpectedConditions.ElementIsVisible(By.xpath("//input[@class='menu'][0]"));
|
||||||
waitForLoginDone.until(ExpectedConditions.ElementIsVisible(By.classname("menu")));
|
waitForLoginDone.until(ExpectedConditions.ElementIsVisible(By.classname("menu")));
|
||||||
driver.switchTo().frame("oben");
|
driver.switchTo().frame("oben");
|
||||||
|
|
Loading…
Reference in New Issue