I am running a simple code to launch the Firefox browser. Running it in Visual Studio. Below is the code:
IWebDriver driver3 = new RemoteWebDriver(
new Uri("http://localhost:4444/wd/hub"),
DesiredCapabilities.Firefox());
driver3.Url = "http://www.google.com";
Getting the error exception as:
An unhandled exception of type 'System.InvalidOperationException' occurred in WebDriver.dll Additional information: Error forwarding the new session Empty pool of VM for setup Capabilities [{browserName=firefox, version=, platform=ANY}]
Can anyone please tell me how to fix this?
I have done the following:
- I am running a selenium grid as role=hub, with localhost:4444 as the port.
- Have added the PATH environment variable in System properties as "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
- I have also tried downgrading the selenium jars versions and even browser versions but no result.
Can anyone please tell how to fix this?
What would be the correct code to fix this issue?