here's my code : ``` /// <reference types="cypres...
# best-practices
a
here's my code :
Copy code
/// <reference types="cypress" />

describe('Accueil smart immo', () => {
  beforeEach(() => {
    cy.visit('http://localhost:8080')
  })

  it('inputs address in estimer input field', () => {
    cy.get('.ensavoirplus.bounce').click({force: true})
    cy.get('#inputestimeradresse').type(`53 BD DU MONTPARNASSE 75006 PARIS`, {force: true})
    cy.get('#inputestimeradresse').should('have.value', '53 BD DU MONTPARNASSE 75006 PARIS')
    cy.get('#suivant').click({force: true})
    cy.get('#inputestimeradresse').should('match', /regex/)
    cy.get("#ad").type(regex[1])
    cy.get("#cp").type(regex[2])
    cy.get("#ville").type(regex[3])
  })
})