Below are two possible ways to run Selenium test-cases from JMeter: using either Jmeter JUnit sampler or BeanShell sampler. The second way includes both client and server parts in the same file, so there is no need to run server separately.
Way #1
Prerequisites
- File
selenium-java-client-driver.jar should be copied at JMeter’s library directory (%JMETER_HOME%/lib/).
- Selenium server should be up and listening.
Jmeter JUnit sampler
- Store Selenium test plan as .jar file at
%JMETER_HOME%/lib/junit/ (note that test class should extends class TestCase or SeleniumTestCase to allow JMeter pick up this test plan, test case's name should start with "test"). This file can be generated from java test's source using any IDE.
- In JMeter add JUnit sampler and set
Class Name according to one from the Selenium test plan. Set Test Method to test that is about to run. Leave other parameters by default.
- Add Response Assertion to sampler from the previous step with value
Test successful (default for JUnit sampler).
Java code for JUnit sampler:
package com.example.tests;
import com.thoughtworks.selenium.*;
import org.junit.Before;
import org.junit.Test;
import org.junit.After;
public class selenium extends SeleneseTestCase {
@Before
public void setUp() throws Exception {
. . .
}
@Test
public void testSelenium_test() throws Exception {
. . .
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
Way #2
Prerequisites
File selenium-server-standalone-2.0b2.jar should be copied at JMeter’s library directory (%JMETER_HOME%/lib/).
Note: There is no need to start the Selenium server.
Jmeter JUnit sampler
- Store Selenium test plan as .jar file at
%JMETER_HOME%/lib/junit/ (note that test class should extends class TestCase or SeleniumTestCase to allow JMeter pick up this test plan, test case's name should starts with "test"). This file can be generated from java test's source using any IDE.
- In JMeter add JUnit sampler and set
Class Name according to one from the Selenium test plan. Set Test Method to test that is about to run. Leave other parameters by default.
- Add Response Assertion to sampler from the previous step with value
Test successful (default for JUnit sampler).
package org.openqa.selenium.example;
import junit.framework.TestCase;
import org.openqa.selenium.*;
import org.junit.Before;
import org.junit.Test;
import org.junit.After;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;
public class selenium extends TestCase {
WebDriver driver;
@Before
public void setUp() {
FirefoxProfile profile = new FirefoxProfile();
. . .
driver = new FirefoxDriver(profile);
}
@Test
public void testSelenium_test() throws Exception {
. . .
}
@After
public void tearDown() {
driver.quit();
}
}