I'm trying to click on a simple link using find(By.linktext("Fund
Information").click() The link HTML itself is:
<li>
<a href="/list/funds.html">Fund Information</a>
</li>
and this works fine in Firefox but I get the error
org.openqa.selenium.ElementNotVisibleException: You may not click an
element that is not displayed
when I run it with Internet Explorer, is this a common issue? Is
there something I need to change in the page HTML so IE can see it, or
do I need to search for the element differently in the code? I've
read a couple of comments about how elements need to be visible etc,
the element's CSS is as follows, by the way (copied from the 'computed
styles' section from Chrome):
color: #555;
cursor: auto;
display: block;
height: 16px;
padding-bottom: 7px;
padding-left: 35px;
padding-right: 25px;
padding-top: 7px;
text-decoration: none;
width: 119px;
zoom: 1;
--
You received this message because you are subscribed to the Google Groups "webdriver" group.
To post to this group, send email to
webd...@googlegroups.com.
To unsubscribe from this group, send email to
webdriver+...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/webdriver?hl=en.