I have a problem grabbing this input area with cypress automation.
I have tried:
cy.get('#license_number_plate') // and cy.contains('License plate number')
Try using the text of the aria-label
it('types in a licence plate', () => { cy.visit('https://www.cars.com/sell/'); cy.get('[aria-label="License plate number"]') .focus() .type('abc123') })