Hello.
I am still trying to get our stuff setup. I have a functional TestSuite running under SeleniumRC0.8.2, but the same thing under 1.0.B2 fails with:
Line: 548
Char: 9
Error: 'this.link' is null or not an object
Code: 0
URL: .../TestRunner.hta
I have checked through the log that Selenium produces, and here is my guess:
There is a line in there that says:
13:06:13.187 DEBUG [10] org.openqa.selenium.server.browserlaunchers.AsyncExecute - Execute:Java13CommandLauncher: Executing 'C:\WINDOWS\system32\mshta.exe' with arguments:
'C:\DOCUME~1\MARK~1.LEH\LOCALS~1\Temp\customProfileDir172062\core\TestRunner.hta'
'auto=true&multiWindow=true&defaultLogLevel=info&baseUrl=http%3A%2F%2Flocalhost%2FpetroLook4410%2F/selenium-server/tests/&resultsUrl=http://localhost:4444/selenium-server/postResults&test=http%3A%2F%2Flocalhost%2Fselenium-server%2Ftests%2FTest_Suite.htm&baseUrl=http://localhost:4444/selenium-server/
'
In version 0.8.2 (the one that works), the same line says:
13:11:30.640 DEBUG [10] org.openqa.selenium.server.browserlaunchers.AsyncExecute - Execute:Java13CommandLauncher: Executing 'C:\DOCUME~1\MARK~1.LEH\LOCALS~1\Temp\customProfileDir489828\killableprocess.exe' with arguments:
'C:\Program Files\Internet Explorer\iexplore.exe'
'-new'
'http://localhost/selenium-server/core/TestRunner.html?auto=true&multiWindow=true&defaultLogLevel=info&baseUrl=http%3A%2F%2Flocalhost%2FpetroLook4410%2F/selenium-server/tests/&resultsUrl=../postResults&test=http%3A%2F%2Flocalhost%2Fselenium-server%2Ftests%2FTest_Suite.htm'
While SeleniumRC1.0 (the broken one) is started, I tried to look at http%3A%2F%2Flocalhost%2Fselenium-server%2Ftests%2F and there is NOTHING there. However, all my stuff is at http%3A%2F%2Flocalhost:4444%2Fselenium-server%2Ftests%2F
I think there is an issue with the port (4444).
Confirmed broken!
If I use "*iehta" instead of "*iexplore" when launching the selenium server, AND configure my http proxy manually (to localhost:4444), the problem goes away.