NOTE - I am running SeleniumGrid 4.1.0 in Hub-Node mode with Hub and Node running on the same machine.
When I try to run Firefox (ver - 94.0.2) instance using following code nothing happens and Hub freezes
var firefoxOptions = new FirefoxOptions
{
PlatformName = "WINDOWS",
Profile = new FirefoxProfile()
};
_driver = new RemoteWebDriver(seleniumGridUri, firefoxOptions);
Where as if I directly use FirefoxDriver, it works. This works fine
var firefoxOptions = new FirefoxOptions
{
PlatformName = "WINDOWS",
Profile = new FirefoxProfile()
};
_driver = new FirefoxDriver(geckoDriverFolderPath, firefoxOptions);
Can someone please help?