AngularJS e2e test case with Protractor failed with Google CaptchaAngularjs, e2e test with angular-recaptchaProtractor timeout on Jenkins with PhantomJSProtractor “window.angular is undefined” error with PhantomJSProtractor test involving ng-showProtractor : Error: Error while waiting for Protractor to sync with the page: "window.angular is undefined. If i create new object of PageObjectProtractor 2.28 - headless Chrome 57 - linux - tests failedProtractor: multiple browser instances in a Non-Angular app: ignoreSynchronization Not workingprotractor error “both angularJS testability and angular testability are undefined”Unable to run automated testcases on e2e protractor,Angular 2Executing Multiple IT blocks inside a Protractor For loop for web testingProtractor Test fails when Opening PDF file in new Tab

How does the math work for Perception checks?

How should I respond when I lied about my education and the company finds out through background check?

What are the advantages of simplicial model categories over non-simplicial ones?

When were female captains banned from Starfleet?

PTIJ: Haman's bad computer

Mixing PEX brands

Does malloc reserve more space while allocating memory?

Open a doc from terminal, but not by its name

How to hide some fields of struct in C?

Picking the different solutions to the time independent Schrodinger eqaution

How could a planet have erratic days?

How much character growth crosses the line into breaking the character

Plot of a tornado-shaped surface

Sums of entire surjective functions

Angel of Condemnation - Exile creature with second ability

Why would a new[] expression ever invoke a destructor?

Can I visit Japan without a visa?

Has any country ever had 2 former presidents in jail simultaneously?

Can disgust be a key component of horror?

Lowest total scrabble score

Limits and Infinite Integration by Parts

The probability of Bus A arriving before Bus B

Does an advisor owe his/her student anything? Will an advisor keep a PhD student only out of pity?

Did arcade monitors have same pixel aspect ratio as TV sets?



AngularJS e2e test case with Protractor failed with Google Captcha


Angularjs, e2e test with angular-recaptchaProtractor timeout on Jenkins with PhantomJSProtractor “window.angular is undefined” error with PhantomJSProtractor test involving ng-showProtractor : Error: Error while waiting for Protractor to sync with the page: "window.angular is undefined. If i create new object of PageObjectProtractor 2.28 - headless Chrome 57 - linux - tests failedProtractor: multiple browser instances in a Non-Angular app: ignoreSynchronization Not workingprotractor error “both angularJS testability and angular testability are undefined”Unable to run automated testcases on e2e protractor,Angular 2Executing Multiple IT blocks inside a Protractor For loop for web testingProtractor Test fails when Opening PDF file in new Tab













0















I'm trying to test my application and there is a sign-up page for the e2e test case and a Google recaptcha within the sign-up form.



I tried to use the below code to bypass Google recaptcha code:



 browser.switchTo().frame(0).then(function () 
console.log("Inside iFrame ");
var checkbox = $(".recaptcha-checkbox-checkmark");
browser.sleep(5000);
console.log("var checkbox defined.");
// first hover the checkbox
browser.actions().mouseMove(checkbox).perform();
browser.sleep(5000);
console.log("Moved mouse to hover on checkbox");
// hardcoded delay
browser.sleep(500);
browser.sleep(5000);
console.log("Browser sleep completed.");
// okat, now click - TODO: may be we should click with browser.actions().click() and provide the x, y coordinates for where to click
checkbox.click();
browser.sleep(5000);
console.log("clicked checkbox.");
);


I got this code from the Question here.



However, using this code has produced the following error:




Failed: Error while waiting for Protractor to sync with the page: window.angular is undefined. This could be either because this is a non-angular page or because your test involves client-side navigation, which can interfere with Protractor's bootstrapping. See http://git.io/v4gXM for details.




Moreover, I put in debugging console logs and whilst they are printing successfully I am still given the error.










share|improve this question
























  • instead of checkbox.click() use browser.actions().mouseMove(checkbox).click().perform();

    – Madhan
    Mar 8 at 6:38












  • I tried but got the same error :(

    – Virus
    Mar 8 at 20:37











  • share your html and ui to get a better view on the problem

    – Madhan
    Mar 11 at 5:19















0















I'm trying to test my application and there is a sign-up page for the e2e test case and a Google recaptcha within the sign-up form.



I tried to use the below code to bypass Google recaptcha code:



 browser.switchTo().frame(0).then(function () 
console.log("Inside iFrame ");
var checkbox = $(".recaptcha-checkbox-checkmark");
browser.sleep(5000);
console.log("var checkbox defined.");
// first hover the checkbox
browser.actions().mouseMove(checkbox).perform();
browser.sleep(5000);
console.log("Moved mouse to hover on checkbox");
// hardcoded delay
browser.sleep(500);
browser.sleep(5000);
console.log("Browser sleep completed.");
// okat, now click - TODO: may be we should click with browser.actions().click() and provide the x, y coordinates for where to click
checkbox.click();
browser.sleep(5000);
console.log("clicked checkbox.");
);


I got this code from the Question here.



However, using this code has produced the following error:




Failed: Error while waiting for Protractor to sync with the page: window.angular is undefined. This could be either because this is a non-angular page or because your test involves client-side navigation, which can interfere with Protractor's bootstrapping. See http://git.io/v4gXM for details.




Moreover, I put in debugging console logs and whilst they are printing successfully I am still given the error.










share|improve this question
























  • instead of checkbox.click() use browser.actions().mouseMove(checkbox).click().perform();

    – Madhan
    Mar 8 at 6:38












  • I tried but got the same error :(

    – Virus
    Mar 8 at 20:37











  • share your html and ui to get a better view on the problem

    – Madhan
    Mar 11 at 5:19













0












0








0








I'm trying to test my application and there is a sign-up page for the e2e test case and a Google recaptcha within the sign-up form.



I tried to use the below code to bypass Google recaptcha code:



 browser.switchTo().frame(0).then(function () 
console.log("Inside iFrame ");
var checkbox = $(".recaptcha-checkbox-checkmark");
browser.sleep(5000);
console.log("var checkbox defined.");
// first hover the checkbox
browser.actions().mouseMove(checkbox).perform();
browser.sleep(5000);
console.log("Moved mouse to hover on checkbox");
// hardcoded delay
browser.sleep(500);
browser.sleep(5000);
console.log("Browser sleep completed.");
// okat, now click - TODO: may be we should click with browser.actions().click() and provide the x, y coordinates for where to click
checkbox.click();
browser.sleep(5000);
console.log("clicked checkbox.");
);


I got this code from the Question here.



However, using this code has produced the following error:




Failed: Error while waiting for Protractor to sync with the page: window.angular is undefined. This could be either because this is a non-angular page or because your test involves client-side navigation, which can interfere with Protractor's bootstrapping. See http://git.io/v4gXM for details.




Moreover, I put in debugging console logs and whilst they are printing successfully I am still given the error.










share|improve this question
















I'm trying to test my application and there is a sign-up page for the e2e test case and a Google recaptcha within the sign-up form.



I tried to use the below code to bypass Google recaptcha code:



 browser.switchTo().frame(0).then(function () 
console.log("Inside iFrame ");
var checkbox = $(".recaptcha-checkbox-checkmark");
browser.sleep(5000);
console.log("var checkbox defined.");
// first hover the checkbox
browser.actions().mouseMove(checkbox).perform();
browser.sleep(5000);
console.log("Moved mouse to hover on checkbox");
// hardcoded delay
browser.sleep(500);
browser.sleep(5000);
console.log("Browser sleep completed.");
// okat, now click - TODO: may be we should click with browser.actions().click() and provide the x, y coordinates for where to click
checkbox.click();
browser.sleep(5000);
console.log("clicked checkbox.");
);


I got this code from the Question here.



However, using this code has produced the following error:




Failed: Error while waiting for Protractor to sync with the page: window.angular is undefined. This could be either because this is a non-angular page or because your test involves client-side navigation, which can interfere with Protractor's bootstrapping. See http://git.io/v4gXM for details.




Moreover, I put in debugging console logs and whilst they are printing successfully I am still given the error.







angularjs protractor recaptcha e2e-testing






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 8 at 5:38









Craig Oldfield

939




939










asked Mar 8 at 2:29









VirusVirus

64




64












  • instead of checkbox.click() use browser.actions().mouseMove(checkbox).click().perform();

    – Madhan
    Mar 8 at 6:38












  • I tried but got the same error :(

    – Virus
    Mar 8 at 20:37











  • share your html and ui to get a better view on the problem

    – Madhan
    Mar 11 at 5:19

















  • instead of checkbox.click() use browser.actions().mouseMove(checkbox).click().perform();

    – Madhan
    Mar 8 at 6:38












  • I tried but got the same error :(

    – Virus
    Mar 8 at 20:37











  • share your html and ui to get a better view on the problem

    – Madhan
    Mar 11 at 5:19
















instead of checkbox.click() use browser.actions().mouseMove(checkbox).click().perform();

– Madhan
Mar 8 at 6:38






instead of checkbox.click() use browser.actions().mouseMove(checkbox).click().perform();

– Madhan
Mar 8 at 6:38














I tried but got the same error :(

– Virus
Mar 8 at 20:37





I tried but got the same error :(

– Virus
Mar 8 at 20:37













share your html and ui to get a better view on the problem

– Madhan
Mar 11 at 5:19





share your html and ui to get a better view on the problem

– Madhan
Mar 11 at 5:19












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55055869%2fangularjs-e2e-test-case-with-protractor-failed-with-google-captcha%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55055869%2fangularjs-e2e-test-case-with-protractor-failed-with-google-captcha%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived