Skip to content

Instantly share code, notes, and snippets.

@pauljz
Created March 29, 2014 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pauljz/9862146 to your computer and use it in GitHub Desktop.
Save pauljz/9862146 to your computer and use it in GitHub Desktop.
stirno/FluentAutomation Issue #69
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace FluentAutomation.Tests
{
[TestClass]
public class Issue69Test : FluentTest
{
public Issue69Test()
{
FluentAutomation.SeleniumWebDriver.Bootstrap(
new Uri("http://192.168.1.19:4444/wd/hub"),
SeleniumWebDriver.Browser.InternetExplorer
);
// I'm using remote webdriver to an IE9 VM. If on a machine with IE9 installed, this works:
//FluentAutomation.SeleniumWebDriver.Bootstrap(SeleniumWebDriver.Browser.InternetExplorer);
}
[TestMethod]
public void ReproduceIssue69()
{
I.Open("https://teammentor.net/teamMentor");
I.WaitUntil(() => I.Assert.Exists("#topRightMenu"));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment