I'm testing a web app in several browsers with the Selenium 2.45.0 grid.
At one point (I suppose when Bugsnag was added to the app) some find_element functions started to fail in Firefox (still work in Safari) with the 'Permission denied to access property handleEvent
error.
It looks like there is a workaround for that:
adding
$driver -> get_active_element();
before calling
$driver -> find_element...
But this is awkward.
Did anyone else face the same problem and find a more adequate solution?