Currently, I am working on creating a JMeter script to measure the UI response time for different events using the WebDriver Sampler plugin.
In my application, access to the GUI is restricted to certificate-authentication only. Therefore, my concern is whether it is possible to load a custom profile for Firefox using the WebDriverSampler or how can we manage client-authentication using the WebDriver sampler for any browser (firefox/chrome/IE) etc....
I attempted to modify the system.properties
file located at Jmeter3.0/bin/system.properties
with the following settings:
#webdriver.firefox.profile=profileName
#jmeter -Dwebdriver.firefox.profile=profileName
Unfortunately, the profile failed to load and an error message stating "SECURE CONNECTION FAILED" was displayed.
Is there a
WebDriver-Sampler-Server.jar
available for JMeter that could potentially resolve this issue?
Alternatively, can we address this problem using JavaScript instead?