giorgiosironi / phpunit-selenium

Selenium RC integration for PHPUnit
http://www.phpunit.de/
Other
601 stars 271 forks source link

Iframe with Firefox 34.0 #335

Closed chandon closed 9 years ago

chandon commented 9 years ago

Using PHPUnit_Extensions_Selenium2TestCase, $this->iframe() seems not selecting the iframe on firefox 34.0 (Windows) On Chome, no problem... Perhaps a Selenium Webdriver issue ?

julianseeger commented 9 years ago

Try $this->frame($iframe) with $iframe being the WebElement of the selected iframe.

chandon commented 9 years ago

This works with WebElement (but not with id). Thanks