describe('My First Test', () => {
it('Visits Replpad', () => {
cy.visit('http://hostilefork.com/media/shared/replpad-js/')
cy.get('input').type('now')
})
})
Trying to type some text into the bottom input field but it times out trying to find the input field. I've extended the time out period up to 10,000 but it still doesn't see the input field.
Is there a solution to this?
instead of
cy.get('input').type('now')
try
cy.get('.input').type('now')