Friday, January 10, 2014

Sample - How to automate auto suggest

Sample - How to automate auto suggest

1. Go to this site http://jqueryui.com/autocomplete/

2. Enter the "a" as text
3. From the list select Java

Note : Since Jqueryui site is in frame, first need to switch to frame and then sendkeys "a" and select JAVA from the list




package com.test.Day6;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.NoSuchElementException;
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;
public class AutoSuggest {
public static WebDriver driver;
public static WebDriverWait wait;
public static void main(String[] args) throws InterruptedException {
// TODO Auto-generated method stub
System.setProperty("webdriver.chrome.driver","youtrpath/chromedriver");
driver= new ChromeDriver();
driver.get("http://jqueryui.com/autocomplete/");
Thread.sleep(5000);
By frameLocator = By.className("demo-frame");
By tagText = By.xpath("//*[@id='tags']");
WebElement frameElement=driver.findElement(frameLocator);
driver.switchTo().frame(frameElement);
wait = new WebDriverWait(driver,15);
wait.until(ExpectedConditions.presenceOfElementLocated(tagText));
WebElement textBoxElement = driver.findElement(tagText);
textBoxElement.sendKeys("a");
selectOptionWithText("Java");
}
private static void selectOptionWithText(String textToSelect) {
// TODO Auto-generated method stub
try {
WebElement autoOptions = driver.findElement(By.id("ui-id-1"));
wait.until(ExpectedConditions.visibilityOf(autoOptions));
List optionsToSelect = autoOptions.findElements(By.tagName("li"));
for(WebElement option : optionsToSelect){
if(option.getText().equals(textToSelect)) {
System.out.println("Trying to select: "+textToSelect);
option.click();
break;
}
}
} catch (NoSuchElementException e) {
System.out.println(e.getStackTrace());
}
catch (Exception e) {
System.out.println(e.getStackTrace());
}
}
}