public class CashKaroSample {
public static void main(String[] args) {
final String url = "http://cashkaro.iamsavings.co.uk/";
RemoteWebDriver driver = null;
try {
driver = new ChromeDriver();
driver.get(url);
driver.findElement(By.linkText("SIGN IN")).click();
WebDriverWait wait = new WebDriverWait(driver, 15);
String xpath = "//iframe[contains(@src,'http://cashkaro.iamsavings.co.uk/')]";
wait.until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.xpath(xpath)));
WebElement uname = driver.findElement(By.name("uname"));
System.err.println("****" + uname.getAttribute("onblur"));
} finally {
if (driver != null) {
driver.quit();
}
}
}
}
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CAC1DipcV%3DrOF1f7%2BHr092G3ogTkhhAO%3D3x4fNPKNmGW-zKvpdw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/SG2PR03MB147234EDDD14FED100FD22A5905E0%40SG2PR03MB1472.apcprd03.prod.outlook.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CANikZLnOme6DFJ2mi-Rk7enp0Xmq-EDX4tCREDL_4wMj-77uKQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.