When using the code @driver.find_element(:id, "test").click to click on an element, it functions properly when executed in FF16 with Selenium Ruby Webdriver (selenium-webdriver-2.26.0.gem).
However, while attempting to run the script in IE9 browser (using IE driver: IEDriverServer.exe), no error is displayed, but the Click event does not work. It appears that Selenium ignores this specific line of code and proceeds to the next lines in the script.
It is important to note that this issue arises only when trying to click on certain elements within the application. When attempting to click on other elements such as buttons or links, there is no problem.
I am seeking assistance in resolving this issue so that Selenium can successfully trigger the Click function in IE9 browser. Thank you for your help.