Skip to content

Instantly share code, notes, and snippets.

@abhilashshettigar
Last active December 3, 2018 12:52
Show Gist options
  • Save abhilashshettigar/d7aebabf721dc82369324de599bfff6c to your computer and use it in GitHub Desktop.
Save abhilashshettigar/d7aebabf721dc82369324de599bfff6c to your computer and use it in GitHub Desktop.
Sample Code in Cypress for calling custom custom
describe('Make Custom Command and Using in regular test script', () => {
before('Calling Custom command before making any User actions', () => {
cy.Login()
})
it('Test Script',() => {
//Test Script starts
cy.visit('http://localhost:8080')
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment