// 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();
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();
No comments:
Post a Comment