selenium code is:
package junitJmeter;
import static org.junit.Assert.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class LoadTests {
WebDriver driver;
@Before
public void SetUp() {
driver = new FirefoxDriver();
}
@Test
public void testCase01LoadingFirstPage() throws Exception {
driver.get("https://www.google.com");
assertEquals("Google", driver.getTitle());
}
@After
public void tearDown() {
driver.quit();
}
}
and I have exported as jar file, put it into jmeter lib/junit folder. in jmeter i have created -threadGroup -junitRequest -viewRrsultTree but the test not run at all, even cannot open firefox