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
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
add a comment |
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
instead ofcheckbox.click()
usebrowser.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
add a comment |
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
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
angularjs protractor recaptcha e2e-testing
edited Mar 8 at 5:38
Craig Oldfield
939
939
asked Mar 8 at 2:29
VirusVirus
64
64
instead ofcheckbox.click()
usebrowser.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
add a comment |
instead ofcheckbox.click()
usebrowser.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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
instead of
checkbox.click()
usebrowser.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