How to perform webdriver backed selenium in selenium 3 ?
Selenium 3 has recently removed the feature called 'webdriver backed selenium'
I have to perform mouseover, type operations like this, which is no more supported in Selenium 3.
selenium = new WebDriverBackedSelenium(driver, "http://www.google.com");
selenium.openWindow("http://www.google.com", "google");
selenium.mouseOver(anElement);
I have tried with moveToElement method , But it doesn't executes in my site . Thats why I was using webdriver backed selenium in Selenium 2 (WebDriver).
What work around I have to do to get this in Selenium 3