I'm using Jmeter 2.11, jdk1.7.0_7, Firefox 26.0, WebDriver plugin 1.1.3
Error i faced:
ERROR - jmeter.threads.JMeterThread: Test failed! org.openqa.selenium.WebDriverException: Cannot find firefox binary in PATH. Make sure firefox is installed.
my Environment variable:
%PATH%;D:\Mozilla Firefox\;
* Firefox's folder is in the PATH
Test script that i ran was the one in the webdriver documentation.
I faced this issue in maven/Java for webdriver too but there is a workaround which is to manually change the JVM instance System properties that is:
System.setProperty("webdriver.firefox.bin",D\:\\Mozilla Firefox\\Firefox.exe));
Is there a equivalent function as the one above for the Web Driver Sample or is there a workaround for this.
Any suggestion will be appreciated, Thanks