ccarmannt
ccarmannt
Our implementation needs to be able to launch our customized proxy on the hub and servlets on the nodes.
No movement on this in 6 months? This is a serious loss of functionality. @diemol @titusfortner
The customized proxy does various work inside the proxy class methods (eg. `beforeSession`, `afterSession`, etc.). This includes things to prepare the node for use before the test starts, like killing...
Thanks for this pointer, @diemol . However, it doesn't work. If I include the `--node-implementation` flag in the command, the node doesn't launch. It just prints the help: ```` >java...
I don't see anything in that link that defines an order for arguments. And what do you mean by `share the class path` ?
Ok, using this modified command: ```` java -cp . -jar selenium-server-4.1.2.jar node --node-implementation SuperNode ```` Generates this ClassNotFoundException: ```` 09:42:16.126 INFO [LogManager$RootLogger.log] - Using the system default encoding 09:42:16.129 INFO...
That is the whole class name. The file SuperNode.class is in the current directory when running the command to start the node.
I was able to build a jar that allows the node to attempt to start, but it throws an exception when trying to read the configuration information: ```` Caused by:...
Is `LocalNode` the class that is used for nodes when a grid is started without options? (java -jar server.jar) ? I was able to hack the code to get around...
We were using the servlets to create callable endpoints on the hub, e.g.: ```` http://hub:4444/grid/admin/tasklist?sessionId=12345 ```` So that when these endpoints were hit, we could execute some custom code in...