Пользовательский шрифт с онлайн-редактором Vega?

вы можете сделать так:

public void selectDropDownValue(String ValueToSelect) 
{

    webelement findDropDownValue=driver.findElements(By.id("id1"))    //this will find that dropdown 

    wait.until(ExpectedConditions.visibilityOf(findDropDownValue));    // wait till that dropdown appear

    super.highlightElement(findDropDownValue);   // highlight that dropdown     

    new Select(findDropDownValue).selectByValue(ValueToSelect);    //select that option which u had passed as argument
}
0
задан Melissa 5 March 2019 в 20:21
поделиться

1 ответ

0
ответ дан Melissa 5 March 2019 в 20:21
поделиться
Другие вопросы по тегам:

Похожие вопросы: