This question has been bothering me for quite some time. I am currently using Selenium in conjunction with Python to find an element within a webpage. The specific element I am targeting is as follows:
<a id="topmenu_adhocQtraditional_Reports" title="" href="javascript:menuGizmo.navigate('Reports','mdiv_topmenu_Reports','topmenu_adhocQtraditional','Adhoc Query Traditional LIMS',function(){sapphire.page.navigate('rc?command=page&page=AdhocQTraditional','Y',null, null, true, document.getElementById('topmenu_adhocQtraditional_Reports'))})" class="menugizmo_link" _menuid="Reports">Adhoc Query Traditional LIMS</a>
My issue lies in attempting to locate the above element within the a
tag. While Selenium can successfully locate it without any errors, when I attempt to use the click()
method, an error is thrown stating 'Not interactable'. Additionally, using the is_displayed()
method returns false, despite waiting an adequate amount of time for the page to fully load.
Any insights into why this might be occurring?