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
| namespace SeleniumTest | |
| { | |
| [TestFixture(typeof(FirefoxDriver))] | |
| [TestFixture(typeof(InternetExplorerDriver))] | |
| public class BlogTest<TWebDriver> where TWebDriver : IWebDriver, new() | |
| { | |
| private IWebDriver _driver; | |
| [Test] | |
| public void SearchResults_ShouldHaveCorrectPageTitle() |