Pages

Monday, October 20, 2014

Handling iframes through Web driver

 // Switch to iframe section
driver.switchTo().frame(driver.findElement(By.id("iframe id")));

// Pass the values to iframe object
 driver.findElement(By.tagName("body")).sendKeys("hi i am entering values in iframe object");

//Switch to normal content on the page.
driver.switchTo().defaultContent();