Hi,
Still quite new to Coypu.
Has anyone had any success linking Coypu to Sauce Labs, I know I can do this with Selenium Web Driver directly but I'm not sure how to do this in Coypu?
This is the code suggested to get Sauce Labs working with Selenium
[SetUp]
public void Init()
{
DesiredCapabilities capabillities = DesiredCapabilities.Firefox();
capabillities.SetCapability(CapabilityType.Version, "10");
capabillities.SetCapability(CapabilityType.Platform, new Platform(PlatformType.XP));
capabillities.SetCapability("name", "Testing Selenium 2 with C# on Sauce");
capabillities.SetCapability("username", "username-string");
capabillities.SetCapability("accessKey", "access-key-string");
driver = new RemoteWebDriver(
new Uri("http://ondemand.saucelabs.com:80/wd/hub"), capabillities);
}
Cheers,
Andy