Hire QA – Specialized in QA Recruitment, Technical Interviews and Testing Solutions

cypress – handle auto suggested dropdown

Category: Cypress
//Wikipedia search textbox example
cy.visit('https://www.wikipedia.org/')
cy.get('#searchInput').type('hyd')
cy.get('.suggestion-title').contains('Hyderabad').click()

//Google search example
cy.visit('https://www.google.com/')
cy.get('.gLFyf').type('Cypress')
cy.get('.wM6W7d > span').each(($el, index, $list) => {
    if($el.text() == 'cypress automation')
    {
        cy.wrap($el).click()

    }

Leave a Reply

Your email address will not be published. Required fields are marked *