使用带有MSTests的FluentAutomation在同一类中的多个测试中重用浏览器实例

时间:2015-04-01 19:09:02

标签: unit-testing mstest ui-automation fluentautomation

我正在使用FluentAutomation和MSTests。我需要能够在同一个类中的多个测试方法中重用浏览器实例。例如,构造函数或TestInitialize方法将登录到url,然后该类中的所有后续Test方法将需要使用相同的登录会话和浏览器实例。

尝试使用FluentSession.EnableStickySession();但这没有用,执行中的第二种方法抱怨IEDriver已经被另一个进程使用了​​。

有任何想法如何解决这个问题?

以下是该方案的示例代码:

[TestClass]
  public class DummyTests : FluentTest
  {
    public DummyTests()
    {
      SeleniumWebDriver.Bootstrap(SeleniumWebDriver.Browser.InternetExplorer);
      I.Open(@"http://google.com");
      FluentSession.EnableStickySession();
    }

    [TestMethod]
    public void First()
    {
      I.Wait(2)
        .Enter("NBA").In("input#lst-ib.gsfi")
        .Click("button[type='submit']");

    }

    [TestMethod]
    public void Second()
    {
      I.Wait(2)
        .Enter("MLB").In("input#lst-ib.gsfi")
        .Click("button[type='submit']");
    }
  }

1 个答案:

答案 0 :(得分:1)

在创建任何浏览器之前调用EnableStickySession。大多数用户在公共init / TestInitialize / ClassInitialize中执行此操作。