I know we can use popular browsers using Selenium WebDriver. But my question is can I a custom made browser with Selenium?
Is it even possible?
I know we can use popular browsers using Selenium WebDriver. But my question is can I a custom made browser with Selenium?
Is it even possible?
Hey Tim,
You can try following the below set of instructions to setup support for a custom browser type when running selenium tests against a Selenium Grid.
org.openqa.selenium.remote.server.DriverProvider
(or) extend org.openqa.selenium.remote.server.DefaultDriverProvider
wherein you take care of building support for your custom browser.META-INF\services
under your main resources folder and ensure that this directory gets bundled into the jar, when you create a jar out of your project.org.openqa.selenium.remote.server.DriverProvider
wherein you add the fully qualified class name of the new class you created in step (1) and place it in the directory created in step (2)Now your new browser is ready to be supported by the Selenium Grid.
Please refer to this selenium-users google forums thread which also talks about the same query wherein the user confirmed that the above mentioned approach worked for them.