We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5352c9a + 8dd0cd7 commit 2b10ba2Copy full SHA for 2b10ba2
1 file changed
src/Selenium2Driver.php
@@ -799,6 +799,8 @@ private function clickOnElement(Element $element)
799
$this->wdSession->moveto(array('element' => $element->getID()));
800
} catch (UnknownCommand $e) {
801
// If the Webdriver implementation does not support moveto (which is not part of the W3C WebDriver spec), proceed to the click
802
+ } catch (UnknownError $e) {
803
+ // Chromium driver sends back UnknowError (WebDriver\Exception with code 13)
804
}
805
806
$element->click();
0 commit comments