문제

I have been trying to get the Neustar Local-Validator working on my Windows 7 machine however I keep getting "SocketException : Connection Reset". Does anyone have any experience with this?

Even a very simple script is failing:

var driver = test.openBrowser();
var selenium = driver.getSelenium();

var timeout = 120000;
selenium.setTimeout(timeout);

var tx = test.beginTransaction();

var step = test.beginStep("Homepage", timeout);
 selenium.open("http://www.neustar.biz/");
test.endStep();

test.endTransaction();
도움이 되었습니까?

해결책

It sounds like you might not have the config file setup correctly for your machine.

Update the file C:\Users\%USERNAME%\.wpm\config.properties

An example is below, but you will want to use the correct path based on your machine.

FF=C:\\Program\ Files\ (x86)\\Mozilla\ Firefox\\firefox.exe
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top