“Pilih kelas di Selenium” Kode Jawaban

Pilih kelas di Selenium

Select objSelect = new Select(driver.findElement(By.id(Element_ID)));
objSelect.selectByIndex(index);
objSelect.selectByIndex(index);
// Or can be used as
objSelect.selectByVisibleText(text);
objSelect.selectByVisibleText(text);
// Or can be used as
objSelect.selectByValue(value);
objSelect.selectByValue(value);
Easy Eel

Pilih di Selenium Java

// Create object of the Select class
Select se = new Select(driver.findElement(By.xpath("//*[@id='oldSelectMenu']")));
 
// Select the option with value "6"
se.selectByValue("6");
Better Bee

Jawaban yang mirip dengan “Pilih kelas di Selenium”

Pertanyaan yang mirip dengan “Pilih kelas di Selenium”

Lebih banyak jawaban terkait untuk “Pilih kelas di Selenium” di Java

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya