0

我正在使用 JWebUnit 在本地运行的应用程序(本地主机)上运行测试,但我的应用程序的某些部分要求用户重定向到外部站点,做一些事情然后回来(重定向到本地主机)。

因为我在代理后面,所以我尝试过使用 TestContext.setProxyAuthorization() 但是 JWebUnit 无法在本地访问应用程序(TestContext 没有像 nonProxyHosts 那样的东西),如果我不使用 TestContext.setProxyAuthorization(),JWebUnit 可以'不访问远程站点。

我应该怎么办?

4

1 回答 1

0
you can use the following within your setup method.  I have used this myself and it works
you may need to add a password key and a value too

 System.setProperty("proxyHost", "AUT ip");
 System.setProperty("proxyPort", "AUT port 8080");
 System.setProperty("proxySet", "true");
 System.setProperty("http.nonProxyHosts", "webserverfor AUT");`enter code here`
于 2012-04-02T09:38:13.320 回答