Our company sells a testing suite that is able to run selenium tests, among several other protocols.
To use it, the end user installs both our application and the selenium server file.
When users write their test cases based on the commands they use in the IDE, every command works on the Selenium Server, except for the echo command. Which is apparently a known limitation of the Selenium Server, every IDE command works except for echo.
This is apparently an intentional configuration: echo command not found while testing selenium with phpunit
We can't seem to figure out a way for our application to get variables back out of Selenium Server once they are stored... since the echo command that works on the IDE returns an error from Selenium Server.
There are Selenium Server bindings for several languages, but not for our application. Since our application and Selenium Server are being distributed to end users in a Windows environment -- no third party languages are installed on the systems by default, like Java, c-sharp, python, etc.
Is there a workaround for getting variables out of Selenium Server without installing an entire programming language onto each end user's PC?