I am trying to click on 'Exhibitor Access' showing in screenshot, Test Runner is showing 'click' action, but click is not happening at all, Check screenshot.
Please Can someone help me out on this, as I am stuck, I am using following strategy for this:
cy.get('a').eq(0).realClick()
As you may check in Test Runner, click is happening, but it is not navigating anywhere.

It looks like the click happens too soon (Cypress shows partial page).
Perhaps add a check for some text,
cy.contains('Please select which exhibiter booth you want to process')
cy.contains('a', 'Exhibitor Access').realClick()