We're converting our Selenium tests to use Selenium-Grid.
I'm trying to find a way to launch selenium-grid's hub and/or remote so that it can use the user-extensions.js
that we created before. I've been able to get everything to work with our old tests except for our extensions.
Searching online I found that you can edit the project.properties
file in the selenium-grid root directory and add the user_extension_file property to point to the user-extensions.js.
user_extension_file=${basedir}/user-extensions.js
I've also tried using a relative and an absolute path for the value of that property, and none of them work. I've tried adding that to both the Hub's root selenium-grid folder and the RC's root selenium-grid folder.
Does anyone know how to do this? Thanks.