narrow-artist-87113
10/01/2022, 2:52 PMred-toddler-79937
10/01/2022, 5:10 PMred-toddler-79937
10/01/2022, 7:47 PM*ngIf
is applied in my HTML file?proud-breakfast-29892
10/01/2022, 9:33 PMstrong-lifeguard-62645
10/01/2022, 10:21 PMstrong-lifeguard-62645
10/01/2022, 10:47 PMnarrow-artist-87113
10/02/2022, 4:14 AMstale-optician-85950
10/02/2022, 12:17 PMdescribe('a google sign in test', () => {
it('Login should happen', () => {
cy.visit('https://internetcomputerservices.com');
cy.contains('Dashboard').click();
cy.contains('Sign in with Google').click();
cy.origin('https://accounts.google.com', () => {
cy.visit('/');
});
});
});
narrow-artist-87113
10/02/2022, 12:37 PMnarrow-artist-87113
10/02/2022, 12:46 PMstale-optician-85950
10/02/2022, 12:56 PMcy.origin
code:
cy.origin('https://accounts.google.com', () => {
cy.visit('/');
cy.url().then($newUrl => {
cy.log('newUrl', $newUrl);
});
});
or
cy.origin('https://accounts.google.com', () => {
cy.visit('/');
cy.get('body');
});
There is nothing in $newUrl
It's like the new page is detached from Cypress runner. I tried a few different ways for you but after the redirect to https://accounts.google.com/v3/signin/identifier? your page is detached and I cannot access anything on it.
I'd also be interested to hear input from other users here. Isn't cy.origin
supposed to handle redirects?stale-optician-85950
10/02/2022, 12:59 PMnarrow-artist-87113
10/02/2022, 1:08 PMnarrow-artist-87113
10/02/2022, 1:10 PMnarrow-artist-87113
10/02/2022, 1:11 PMstale-optician-85950
10/02/2022, 1:12 PMstale-optician-85950
10/02/2022, 1:13 PMnarrow-artist-87113
10/02/2022, 1:16 PMnarrow-artist-87113
10/02/2022, 1:18 PMdazzling-pillow-26039
10/02/2022, 4:18 PMnarrow-artist-87113
10/02/2022, 4:24 PMnarrow-artist-87113
10/02/2022, 4:26 PMnarrow-artist-87113
10/02/2022, 4:28 PMnarrow-artist-87113
10/02/2022, 4:29 PMdazzling-pillow-26039
10/02/2022, 4:30 PMnarrow-artist-87113
10/02/2022, 4:31 PMdazzling-pillow-26039
10/02/2022, 4:32 PMnarrow-artist-87113
10/02/2022, 4:32 PMnarrow-artist-87113
10/02/2022, 4:32 PMnarrow-artist-87113
10/02/2022, 4:34 PM