sampleTest.js 324 B

1234567891011121314
  1. describe('Google', function(){
  2. before('before', function(){
  3. cy.visit(Cypress.config().baseUrl)
  4. })
  5. it('Validate Protocol', function(){
  6. cy.location('protocol').should('eq','https:')
  7. })
  8. it('Validate Search', function(){
  9. cy.get('input[name=q]').type('Earth').type('{enter}')
  10. })
  11. })