blob: 1d67f3b41c11c7335c5bf4cbe624a18709857cb4 [file] [log] [blame] [edit]
using OpenQA.Selenium.Firefox;
using System;
namespace OpenQA.Selenium.Remote
{
// This is a simple wrapper class to create a RemoteWebDriver that
// has no parameters in the constructor.
public class FirefoxRemoteWebDriver : RemoteWebDriver
{
public FirefoxRemoteWebDriver()
: base(new Uri("http://127.0.0.1:6000/wd/hub/"), new FirefoxOptions())
{
}
}
}