I have a problem with PHPUnit_Selenium in Opera. If I have clicked on an element in my test code, the page will not load. In other browsers such as Firefox, IE, Chrome, and Safari, it works correctly.
Code:
$browser->clickAndWait(link);
It's the next steps from SELENIUM REMOTE CONTROL:
click(link)
waitForPageToLoad(120000)
After a timeout, if I click on the link in the browser the page is reloaded.
I have Selenium RC v. 2.31.0 and Opera version 12.41, but I test also on Opera 11.50.
Do you have any idea what is wrong?