say I have the HTML:
What is this
Let's assume you wanna select 2nd option, you can do that simply by this
cy.get("select option").eq(2)
just keep in mind that cy.get() works like jquery's $().
cy.get()
$()