Showing posts with label selenium. Show all posts
Showing posts with label selenium. Show all posts

Wednesday, March 11, 2015

Selenium and iFrame

Before you try searching for the elements within the iframe you will have to switch Selenium focus to the iframe.
Try this before searching for the elements within the iframe:
driver.switchTo().frame(driver.findElement(By.name("iFrameTitle")));

Wednesday, December 10, 2014

Selenium WebDriver Wait

http://assertselenium.com/2013/01/29/webdriver-wait-commands/