Created
October 30, 2011 07:14
-
-
Save keithbloom/1325638 to your computer and use it in GitHub Desktop.
SeleniumVisualStudio
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
| [TestFixture] | |
| public class BasicTests : SeleniumRunner | |
| { | |
| protected override string ProjectName | |
| { | |
| get { return "Selenium.Example.WebSite"; } | |
| } | |
| } |
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
| [Test] | |
| public void Should_HaveOmnitureProductCode() | |
| { | |
| Assert.That(selenium.GetHtmlSource().Contains("s.products"), Is.True, "Omniture script is missing"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment