You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need update the isCaptcha method in GoogleError to that:
/**
* @return bool Check if the page is a captcha
*/
public function isCaptcha()
{
if ($this->getXpath()->query("//input[@name='captcha']")->length > 0) {
return true;
}
if ($this->getXpath()->query("//input[@id='recaptcha']")->length > 0) {
return true;
}
return false;
}
Need update the
isCaptcha
method inGoogleError
to that:Example of the new captcha page: captcha_page.html
The text was updated successfully, but these errors were encountered: