I am trying to click on the link shown below:
<a class="user" href="/Kevin-Rose" action_mousedown="UserLinkClickthrough" id="__w2_L73qRYl_link"
target="_blank">
<span class="matched_term">Kevin Rose</span>
</a>
I tried using following code:
user = driver.find_element_by_xpath("//a[@class='user'][1]")
user.click()
I got following error:
ElementNotVisibleException: Message: u'Element is not currently visible and so may not be interacted with' ; Stacktrace:
How can I solve this problem?
