We are happy to announce that we recently added support for Firefox 7 to our monitoring and load testing products! You can now explicitly specify the Firefox version your script will run against. Currently we support both Firefox 3.6 and Firefox 7.
For example, the following script will open the Firefox 7 browser and navigate to a url:
var selenium = browserMob.openBrowser("FF7");
browserMob.beginTransaction();
browserMob.beginStep("Home Page");
selenium.open("http://seleniumhq.org/");
browserMob.endStep();
browserMob.endTransaction();
The same is possible when using the Selenium 2.0 API (WebDriver):




Recent Comments