Does the Selenium 2 C # library support the use of Selenium 1 commands? In java, you can create a WebDriverBackedSelenium object and use the Selenium 1 commands, but can this be done in C #?
If so, what is the syntax?
Thank,
Hasan
Just like Java Code. See below
IWebDriver driver = new FirefoxDriver(); ISelenium selenium = new WebdriverBackedSelenium(driver, "http://www.google.com"); selenium.open("/");