Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cypress controll panel disapears #19439

Closed
toahawk-hu opened this issue Dec 21, 2021 · 1 comment
Closed

Cypress controll panel disapears #19439

toahawk-hu opened this issue Dec 21, 2021 · 1 comment

Comments

@toahawk-hu
Copy link

toahawk-hu commented Dec 21, 2021

Current behavior

image

Here everything is OK. I writes my e-mail account to login. And click the next button.
Then, in the cypress test there is a cy.pause(), because a 6 digit code arrives to that mail address (user have to write it into the proper field). I writes it, and I want to click the play button to resume the test running, but it disapears.

image

Desired behavior

Should show the button

Test code to reproduce

describe('Zoho people filler', function () {
beforeEach('Before', function () {
Cypress.Cookies.preserveOnce('session_id', 'remember_token');
Cypress.Cookies.debug(true);
});

it('Login to ZOHO application', function () {
    const username = 'toth.attila@idbc.hu';

    cy.clearCookies();
    cy.visit('https://accounts.zoho.eu/signin?servicename=ZohoHome&signupurl=https://www.zoho.com/signup.html');
    cy.get('#login_id').type(username);

    cy.get('#nextbtn').click();
    // here arrives the login code to e-mail address
    cy.pause();
    // here resume button disapears

Cypress Version

latest

Other

No response

@mjhenkes
Copy link
Member

mjhenkes commented Jan 3, 2022

@toahawk-hu looks like your running into our superdomain limitation when you switch from https://accounts.zoho.eu to https://www.zoho.com

We're working implementing this feature on issue #17336, but for now check out the doc I linked above for work arounds.

@mjhenkes mjhenkes closed this as completed Jan 3, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants