Hi All,
I want to use Jbehave running selenium scripts in multiple browsers.
Normally in the selenium we can use below snippet of code (just an example)
to run in chrome or ie
// Code Snippet
System.setProperty("webdriver.ie.driver",
"C:\\SeleniumD\\Selenium\\IEDriverServer.exe");
WebDriver browser = new InternetExplorerDriver(capabilities);
OR
/System.setProperty("webdriver.chrome.driver",
"C:\\KaustubhSelenium\\chromedriver.exe");
//WebDriver browser = new ChromeDriver();
How to use it in Jbehave? Pls advise. I am using seleniumConfiguration in
Project while using Jbehave.
Awaiting the reply.
Cheers,
K