Created
March 29, 2014 20:18
-
-
Save pauljz/9862146 to your computer and use it in GitHub Desktop.
stirno/FluentAutomation Issue #69
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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