When clicking on and choosing a option within a select, the code generated on cypress export creates cy.get('element').type('value of option')
I believe when the element is of type select/option and the event is change we should do a cy.get('element').select('value or label of option selected') instead.
We simple select a value from a dropdown, export it, run the test in cypress and the select does not work properly.