This issue is a known bug. So you need to open selenium-server.jar or rc jar in something like 7zip (which I use) and find the following file:
selenium-server.jar\core\scripts\selenium-testrunner.js.
7zip will let you update this on the fly, and you just need to move the following code:
storedVars = new Object();
storedVars.nbsp = String.fromCharCode(160);
storedVars.space = ' ';
from the start of the startTest function to the start of the startTestSuite function.
A simple move where the stored variable object is initialized.
note , when you choose to edit in 7zip, it will open in notepad and you will see that the code is not formatted, so copy it and open in notepad ++ or something else, and then paste the change and save back.
you may also have a problem if you do this on windows, because there is a directory called βlicenseβ and a file named βLICENSEβ in the RC root directory, and terrible windows identify this as a duplicate of the file, so before you do this above, change the file name "LICENSE" to something like "LICENSE_FILE".
source share