I wrote a test program with selenium 2, which works great on firefox.
But when I try it with IE9, it doesn't find the elements.
for example:
WebElement sh = driver.findElement(By.id("sh"));
sh.click();
works O.K in Firefox, but not in IE9.
I read the next discussion, but it doesn't help me (I try all the suggestions) - It doesn't even find the elements, so I am not sure that this is the same problem.