Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Usando Get()

Created @February 26, 2024 9:07 PM

Class Cypress

Type Self

Materials https://www.youtube.com/watch?v=or8mWt8Ascg

Reviewed

describe('usando_get',()=>{
it('buscar_con_google',()=>{
cy.visit('www.google.com')
cy.get('.gNO89b').should('be.enabled')
})

it.only('buscando_caja_de_busqueda',()=>{
cy.visit('www.google.com')
cy.get('.RNNXgb')

})
})

it.only ⇒ para que cypress ejecute solo ese test

Usando Get() 1

You might also like