citizenmatt
citizenmatt

Reputation: 18583

Running htmlunit for .net selenium-webdriver?

Does anyone have any instructions for a .net dev to run HtmlUnit and HtmlUnitDriver as a standalone server so that I can connect to it from .net tests, using selenium-webdriver's RemoteWebDriver?

I'm not interested in porting HtmlUnit, and I'm perfectly happy to run a jar file, I just don't know how to!

Thanks Matt

Upvotes: 0

Views: 799

Answers (1)

jarib
jarib

Reputation: 6058

Assuming you have Java installed, it should be as simple as downloading the standalone server jar from here, then running:

java -jar selenium-standalone-server.jar

Upvotes: 1

Related Questions