Как написать сценарий для той же процедуры для всех одного и того же элемента класса? - PullRequest
0 голосов
/ 23 ноября 2018

Я новичок в селеновом вебдрайвере с Java.У меня есть <a class="row-title"> свойство до 21 веб-элемента. Я хочу делать код в цикле, чтобы я мог объединить код Java Selen в маленький, в настоящее время я должен написать один и тот же скрипт для всех 21 теста.Пример.

<a class="row-title">1</a>>
........
........
<a class="row-tilte">21</a>.

also i have to do same clicking and update procedure up to 1 to 21 


package Dev_admin;
import java.nio.channels.SelectableChannel;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebElement;
public class present extends login{
@Test(priority = 1)
public void update1() {
    driver.findElement(By.xpath(".//*[@id='post-1217']/td[1]/strong/a")).click();
    WebDriverWait wait = new WebDriverWait(driver, 20);
    WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.xpath(".//*[@id='menu-posts-presentation']/a/div[3]")));
    element.click();
        }
@Test(priority = 2)
public void update2(){
    driver.findElement(By.xpath(".//*[@id='post-1139']/td[1]/strong/a")).click();
    WebDriverWait wait = new WebDriverWait(driver, 20);
    WebElement element = 
    wait.until(ExpectedConditions.elementToBeClickable(By.xpath(".//* 
    [@id='menu-posts-presentation']/a/div[3]")));
    element.click();        


//if i am using class name instead of x path , then how to do same procedure 
in loop so my code became so small or merged..

@Test(priority = 1)
    public void update1() {
    driver.findElement(By.className("row-title")).click();
    WebDriverWait wait = new WebDriverWait(driver, 20);
    WebElement element = 
    wait.until(ExpectedConditions.elementToBeClickable(By.xpath(".//* 
    [@id='menu-posts-presentation']/a/div[3]"))); 
    element.click();
        }

@Test(priority = 2)
   public void update2(){
   driver.findElement(By.className("row-title")).click();
    WebDriverWait wait = new WebDriverWait(driver, 20);
    WebElement element = 
    wait.until(ExpectedConditions.elementToBeClickable(By.xpath(".//* 
    [@id='menu-posts-presentation']/a/div[3]")));
    element.click();        
}

Ответы [ 2 ]

0 голосов
/ 24 ноября 2018
@Test
public void test() {
    WebDriverWait wait = new WebDriverWait(driver, 20);
    //Finding all elements and saving to the list (we expect list to have 21 element)
    List<WebElement> rowEls = driver.findElements(By.className("row-title"));
    //Looping through each of 21 element and doing necessary actions for every element inside the loop
    for (WebElement rowEl: rowEls) {
        rowEl.click();
        WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.xpath(".//*[@id='menu-posts-presentation']/a/div[3]")));
        element.click();
    }
}

Примечание: Не забудьте добавить хотя бы одно утверждение в ваш тест.В настоящее время это будет только несколько кликов без проверки чего-либо.

0 голосов
/ 23 ноября 2018

Модифицированный метод ожидания:

public WebDriverWait wait_sec(WebDriver driver, int sec) {
    return new WebDriverWait(driver, sec);
}

Управление веб-элементами:

public WebElement get_element_by_classname (WebDriver driver, String classname) {
    WebElement element = driver.findElement(By.className(classname));
    return element;
}

public WebElement wait2element_and_get_element_by_xpath (WebDriver driver, String xpath) {
    WebElement element = wait_sec(driver, 20).until(ExpectedConditions.elementToBeClickable(By.xpath(xpath)));
    return element;
}

Использование:

@Test
public void update_x() {
    get_element_by_classname(driver, "row-title").click();
    wait2element_and_get_element_by_xpath(driver, ".//*[@id='menu-posts-presentation']/a/div[3]").click();
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...