blob: 6b611d6f8d1a8b116599479a618162d2bf5006d0 [file] [log] [blame] [edit]
using System;
using OpenQA.Selenium.IE;
namespace OpenQA.Selenium.Remote
{
// This is a simple wrapper class to create a RemoteWebDriver that
// has no parameters in the constructor.
public class TestInternetExplorerRemoteWebDriver : RemoteWebDriver
{
public TestInternetExplorerRemoteWebDriver()
: base(new Uri("http://127.0.0.1:6000/wd/hub/"), new InternetExplorerOptions())
{
this.FileDetector = new LocalFileDetector();
}
}
}