Hi everybody, We are using Selenium for integration testing of our tapestry website. Since our production server is behind a enterprise proxy and oftentimes behaves differently than the local maven jetty development version we want to use Selenium also for using a different server name than 127.0.0.1 to test our production system as well. I have tried to change the selenium test case to point to a different server name using the open() method without any success e.g. using:
open("http://xyz.de/TestPage") instead of open("/TestPage") but this does not work - it seems I can only use relative pathes here. The testng.xml file does not have any parameters to change the server name either: http://tapestry.apache.org/integration-testing.html Is there another way to do this? Cheers Oliver