gpt4 book ai didi

Selenium、FluentAutomation 和 NUnit - 如何为每个 TestCase 切换浏览器?

转载 作者:行者123 更新时间:2023-12-04 05:00:56 24 4
gpt4 key购买 nike

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

using 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;
}
}
}


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

public class SampleTest : FluentAutomation.FluentTest { string path; private Action currentRegistration; public TestContext TestContext { get; set; }

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");

} }

最佳答案

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 的“Base”TestClass。然后,我为每个我想要定位的浏览器扩展一次,并覆盖构造函数以调用适当的 Bootstrap 方法。

有点冗长,但很容易管理。

关于Selenium、FluentAutomation 和 NUnit - 如何为每个 TestCase 切换浏览器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16151838/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com