After munging around to get the right libraries to do SSL requests successfully, I'm now up against:
ERROR - com.googlecode.jmeter.plugins.webdriver.sampler.WebDriverSampler: com.gargoylesoftware.htmlunit.ScriptException: TypeError: Cannot find function addEventListener in object [object HTMLDocument]. (https://myhostname.org/assets/javascripts/jquery-2.1.1.min.js#2)
(namely:
implicit val webDriver: WebDriver = new HtmlUnitDriver(BrowserVersion.CHROME)
webDriver.asInstanceOf[HtmlUnitDriver].setJavascriptEnabled(true);
)
Unfortunately in the WebDriver Sampler, we're handed an already-built WebDriver instance...it's too late to say you're sorry. (Or that you want Chrome behavior.)
Anybody have any thoughts?