- neppalli72
- Posts : 5
Join date : 2012-10-25
Urgent-how can i select and click on items present in combo box/drop down list box
Sun Oct 28, 2012 6:44 pm
Hi,
how can i select and click on any one item present in combo box(Timesheet CR,zzz,Other Activities)
below is my html code
how can i select and click on any one item present in combo box(Timesheet CR,zzz,Other Activities)
below is my html code
- Code:
<div class="x-combo-list-item x-combo-selected" style="white-space: normal;">Timesheet Revamp</div> (if i select this item it is showing as selected in class)
<div class="x-combo-list-item " style="white-space: normal;">Timesheet CR</div>
<div class="x-combo-list-item " style="white-space: normal;">zzz</div>
<div class="x-combo-list-item" style="white-space: normal;">Other Activites</div>
can anybody tell me how i can write script
- qappbcAmateur
- Posts : 38
Join date : 2011-10-13
Re: Urgent-how can i select and click on items present in combo box/drop down list box
Mon Oct 29, 2012 4:03 am
you probably have to trigger the list to drop down first, but you have not
shown what that is here in your html. Let's say it is something like this
to trigger the drop-down list:
driver.findElement(By.xpath("//*[@class='x-form-trigger x-form-search-trigger']")).click();
Then make a call to the following function:
public static void selectDropDownListItem (WebDriver driver, String sItem) throws InterruptedException{
WebElement list = driver.findElement(By.xpath("//*[@class='x-combo-list-inner']"));
List items = list.findElements(By.xpath("//*[starts-with(@class,'x-combo-list-item')]"));
for (int i = 0; i String s = items.get(i).getText();
if (s.contains(sItem)){
items.get(i).click();
i = items.size();
Thread.sleep(100L);
}
}
}
selectDropDownListItem(driver, "zzz");
shown what that is here in your html. Let's say it is something like this
to trigger the drop-down list:
driver.findElement(By.xpath("//*[@class='x-form-trigger x-form-search-trigger']")).click();
Then make a call to the following function:
public static void selectDropDownListItem (WebDriver driver, String sItem) throws InterruptedException{
WebElement list = driver.findElement(By.xpath("//*[@class='x-combo-list-inner']"));
List
for (int i = 0; i
if (s.contains(sItem)){
items.get(i).click();
i = items.size();
Thread.sleep(100L);
}
}
}
selectDropDownListItem(driver, "zzz");
- Code:
- Code:
- Select the “back” button of the Firefox browser to right click and Select the Option from the right click Menu in Selenium Web Driver - Java
- How to select an item from the Drop Down combo thru' selenium web driver
- cant able to select drop down otions
- comparing a string with the strings present in the drop down list
- Urgent-Mouse hover functionality using selenium webdriver for drop down list box
Permissions in this forum:
You cannot reply to topics in this forum