In a few of my test cases, I've been using the following command because it's quite useful when trying to click on a hidden element that only appears when hovered over some context:
((JavascriptExecutor)driver).executeScript("$('selector_for_element').click();");
It was working perfectly fine when tested on FF 15.0, but now when I try the same on FF 24.0, I'm getting the error message Exception in thread "main" org.openqa.selenium.WebDriverException: waiting for evaluate.js load failed
Any assistance would be greatly appreciated. Thank you!