Skip to content

Instantly share code, notes, and snippets.

@san-kumar
Created January 24, 2019 22:21
Show Gist options
  • Save san-kumar/7a52f874c18861d4661063984a226de2 to your computer and use it in GitHub Desktop.
Save san-kumar/7a52f874c18861d4661063984a226de2 to your computer and use it in GitHub Desktop.
first test
describe('My First Test', function() {
it('Check if popup loads properly', function() {
cy.visit('https://www.uploader.win');
cy.contains('Open Uploader').click();
cy.get('iframe').then($iframe => {
const $body = $iframe.contents().find('body');
cy.wrap($body).find('#sidebar');
});
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment