2

目前,openGoogle() 确实会为每个具有正确参数的测试用例调用。问题是 setBrowser 似乎无法正常工作。它确实设置了第一次并成功完成了测试。但是,当第二次调用 openGoogle() 时,它会继续使用第一个浏览器,而不是使用指定的新浏览器。

使用 NFramework = NUnit.Framework; ...

   [NFramework.TestFixture]
    public class SampleTest : FluentAutomation.FluentTest
    {
        string path;
        private Action<TinyIoCContainer> currentRegistration;
        public TestContext TestContext { get; set; }

        [NFramework.SetUp]
        public void Init()
        {
            FluentAutomation.Settings.ScreenshotOnFailedExpect = true;
            FluentAutomation.Settings.ScreenshotOnFailedAction = true;
            FluentAutomation.Settings.DefaultWaitTimeout = TimeSpan.FromSeconds(1);
            FluentAutomation.Settings.DefaultWaitUntilTimeout = TimeSpan.FromSeconds(30);
            FluentAutomation.Settings.MinimizeAllWindowsOnTestStart = false;
            FluentAutomation.Settings.ScreenshotPath = path = "C:\\ScreenShots";
        }

        [NFramework.Test]
        [NFramework.TestCase(SeleniumWebDriver.Browser.Firefox)]
        [NFramework.TestCase(SeleniumWebDriver.Browser.InternetExplorer)]
        public void openGoogle(SeleniumWebDriver.Browser browser)
        {
            setBrowser(browser);

            I.Open("http://www.google.com/");
            I.WaitUntil(() => I.Expect.Exists("body"));
            I.Enter("Unit Testing").In("input[name=q]");
            I.TakeScreenshot(browser + "EnterText");

            I.Click("button[name=btnG]");
            I.WaitUntil(() => I.Expect.Exists(".mw"));
            I.TakeScreenshot(browser + "ClickSearch");
        }

        public SampleTest()
        {
            currentRegistration = FluentAutomation.Settings.Registration;
        }

        private void setBrowser(SeleniumWebDriver.Browser browser)
        {
            switch (browser)
            {
                case SeleniumWebDriver.Browser.InternetExplorer:
                case SeleniumWebDriver.Browser.Firefox:
                    FluentAutomation.SeleniumWebDriver.Bootstrap(browser);
                    break;
            }
        }
    }

注意:在下面这样做可以正常工作 - 为每个测试打开一个单独的浏览器。

公共类 SampleTest : FluentAutomation.FluentTest { 字符串路径;私人动作当前注册;公共 TestContext TestContext { 获取;放; }

private void ie()
{
    FluentAutomation.SeleniumWebDriver.Bootstrap(FluentAutomation.SeleniumWebDriver.Browser.InternetExplorer);
}
private void ff()
{
    >FluentAutomation.SeleniumWebDriver.Bootstrap(FluentAutomation.SeleniumWebDriver.Browser.Firefox);
}

public SampleTest()
{
    //ff
    FluentAutomation.SeleniumWebDriver.Bootstrap();
    currentRegistration = FluentAutomation.Settings.Registration;
}

[TestInitialize]
public void Initialize()
{
    FluentAutomation.Settings.ScreenshotOnFailedExpect = true;
    FluentAutomation.Settings.ScreenshotOnFailedAction = true;
    FluentAutomation.Settings.DefaultWaitTimeout = TimeSpan.FromSeconds(1);
    FluentAutomation.Settings.DefaultWaitUntilTimeout = TimeSpan.FromSeconds(30);
    FluentAutomation.Settings.MinimizeAllWindowsOnTestStart = false;
    path = TestContext.TestResultsDirectory;
    FluentAutomation.Settings.ScreenshotPath = path;
}

[TestMethod]
public void OpenGoogleIE()
{
    ie();
    openGoogle("IE");
}
[TestMethod]
public void OpenGoogleFF()
{
    ff();
    openGoogle("FF");
}
private void openGoogle(string browser)
{
    I.Open("http://www.google.com/");
    I.WaitUntil(() => I.Expect.Exists("body"));
    I.Enter("Unit Testing").In("input[name=q]");
    I.TakeScreenshot(browser + "EnterText");

    I.Click("button[name=btnG]");
    I.WaitUntil(() => I.Expect.Exists(".mw"));
    I.TakeScreenshot(browser + "ClickSearch");

} }
4

1 回答 1

3

Dev 分支:根据我的经验,Dev 分支中的最新部分与 NUnit 的参数化测试用例很好地配合。

只需将 Bootstrap 调用移动到测试用例本身,并确保在最后手动调用 I.Dispose()。这允许在此上下文中运行时正确创建浏览器。

这是一个示例,如果您从 GitHub 的 dev 分支上提取最新版本,您应该能够复制/粘贴并运行该示例。

    [TestCase(FluentAutomation.SeleniumWebDriver.Browser.InternetExplorer)]
    [TestCase(FluentAutomation.SeleniumWebDriver.Browser.Chrome)]
    public void CartTest(FluentAutomation.SeleniumWebDriver.Browser browser)
    {
        FluentAutomation.SeleniumWebDriver.Bootstrap(browser);
        I.Open("http://automation.apphb.com/forms");
        I.Select("Motorcycles").From(".liveExample tr select:eq(0)"); // Select by value/text
        I.Select(2).From(".liveExample tr select:eq(1)"); // Select by index
        I.Enter(6).In(".liveExample td.quantity input:eq(0)");
        I.Expect.Text("$197.70").In(".liveExample tr span:eq(1)");

        // add second product
        I.Click(".liveExample button:eq(0)");
        I.Select(1).From(".liveExample tr select:eq(2)");
        I.Select(4).From(".liveExample tr select:eq(3)");
        I.Enter(8).In(".liveExample td.quantity input:eq(1)");
        I.Expect.Text("$788.64").In(".liveExample tr span:eq(3)");

        // validate totals
        I.Expect.Text("$986.34").In("p.grandTotal span");

        // remove first product
        I.Click(".liveExample a:eq(0)");

        // validate new total
        I.WaitUntil(() => I.Expect.Text("$788.64").In("p.grandTotal span"));
        I.Dispose();
    }

它应该在我希望本周发生的下一个版本中找到 NuGet 的方式。

NuGet v2.0:目前每个测试只支持一次对 Bootstrap 的调用。在 v1 中,我们内置支持针对提供商支持的所有浏览器运行相同的测试,但发现用户更喜欢将其拆分为多个测试。

我使用 v2 管理它的方式是拥有一个包含 TestMethods 的“基础”测试类。然后,我为每个我想要定位的浏览器扩展一次,并覆盖构造函数以调用适当的 Bootstrap 方法。

有点冗长但很容易管理。

于 2013-05-05T14:35:13.633 回答