...

/

Solution Review: Fill Input Field

Solution Review: Fill Input Field

This review provides an explanation to solve the 'Fill Input Field' challenge.

We'll cover the following...

Solution

Note: You can see the Cypress UI better by opening the link next to Your app can be found at:

context('Typing the username', () => {
  it('Should fill the username input field', () => {
    cy.visit('/register')
    cy.get('.form-control').then(($els) => {
      cy.get($els[0]).type('Admin')
    })
  })
})
Solution

Explanation:

...