Hi,
I am trying out WebDriverBacked selenium. I used the below code. But, it gives me "System.NotSupportedException : command" exception.
IWebDriver driver= new FirefoxDriver(); Selenium.WebDriverBackedSelenium selenium= new WebDriverBackedSelenium(driver,myUrl); selenium.Type(locator,value);
Here the command gets replaced by any selenium statement I execute after instantiation. I've written "Type" just as an example. I throws exception at any selenium command.
I'm using c# for RC. Can someone point out, where I'm going wrong over here?
Thanks,
Vamyip