В нижней части я попытался создать метод ожидания для веб-элемента, а затем я объявляю его в тестовом классе, и он не работает.Что было бы лучшим способом добавить ожидание?Я хочу объявить ожидание после заполнения поля почтового индекса
Объект страницы
package pageFactory;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.Select;
import org.openqa.selenium.support.ui.WebDriverWait;
import java.util.concurrent.TimeUnit;
public class ECUTestform {
WebDriverWait wait;
WebDriver driver;
public ECUTestform(WebDriver driver) {
this.driver=driver;
wait = new WebDriverWait(driver, 15, 50);
PageFactory.initElements(driver,this);
}
@FindBy(id="RegisterModel_Phone")
WebElement phone;
@FindBy(xpath="//*[@id=\"RegisterModel_Name\"]")
WebElement firstname;
@FindBy(xpath="//*[@id=\"RegisterModel_Address\"]")
WebElement addressone;
@FindBy(xpath="//*[@id=\"RegisterModel_Street\"]")
WebElement addresstwo;
@FindBy(xpath="//*[@id=\"RegisterModel_City\"]")
WebElement city;
@FindBy(id="RegisterModel_Email")
WebElement email;
@FindBy(xpath="//*[@id=\"RegisterModel_ConfirmEmail\"]")
WebElement emailconfirm;
@FindBy(id="RegisterModel_CountryID")
WebElement selectcountry;
public Select getCountrySelect() {
return new Select(selectcountry);
}
@FindBy(xpath="//*[@id=\"RegisterModel_Password\"]")
WebElement passwd;
@FindBy(xpath="//*[@id=\"RegisterModel_ConfirmPassword\"]")
WebElement passwdconfirm;
@FindBy(id="RegisterModel_Postcode")
WebElement postcode;
@FindBy(xpath="//*[@id=\"tabs-1\"]/div/div/div[16]/div/ins")
WebElement buttonno;
public WebElement button()
{
return buttonno;
}
public WebElement Phone()
{
return phone;
}
public WebElement PostCode()
{
return postcode;
}
public WebElement City()
{
return city;
}
public WebElement FirstName()
{
return firstname;
}
public WebElement AddressOne()
{
return addressone;
}
public WebElement Addresstwo()
{
return addresstwo;
}
public WebElement SelectCount()
{
return selectcountry;
}
public WebElement Emailconfirm()
{
return emailconfirm;
}
public WebElement Email()
{
return email;
}
public WebElement Password()
{
return passwd;
}
public WebElement Passwordconfirm()
{
return passwdconfirm;
}
public WebElement explicitWait() {
WebDriverWait w=new WebDriverWait(driver, 5, 200);
return w.until(ExpectedConditions.visibilityOf(selectcountry));
}
}
Тестовый класс
package testCases;
import pageFactory.ECUHomePage;
import pageFactory.ECUTestform;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.testng.annotations.Test;
public class TESTForm {
WebDriver driver;
WebDriverWait wait;
@Test
public void Test() throws InterruptedException
{
System.setProperty("webdriver.chrome.driver","C:\\Users\\\chromedriver.exe");
WebDriver driver=new ChromeDriver();
driver.get("https://www.website.com/");
ECUHomePage rd = new ECUHomePage(driver);
ECUTestform rt = new ECUTestform(driver);
rd.TestForm().click();
// Name and Address
rt.FirstName().sendKeys("TEST");
rt.AddressOne().sendKeys("TEST123");
rt.Addresstwo().sendKeys("TESTING3434");
rt.City().sendKeys("TESTINGTON");
rt.PostCode().sendKeys("TEST");
rt.explicitWait();
rt.getCountrySelect().selectByVisibleText("United Kingdom");
rt.Emailconfirm().sendKeys("test@testing.com");
rt.Email().sendKeys("test@testing.com");
rt.Password().sendKeys("testingpassword101");
rt.Passwordconfirm().sendKeys("password");
rt.Phone().sendKeys("0115 841003320");
rt.button().click();
Я пытался внизу создатьвеб-элемент для ожидания, но затем я объявляю его в тестовом классе, и он не работает.Что было бы лучшим способом добавить ожидание?Я хочу объявить ожидание после заполнения поля почтового индекса