我正在使用 NUnit + SpecFlow + Selenium 构建一个测试框架。我有两个项目的解决方案(到目前为止)。在顶层我有套件框架,所以:PageFactory、DriverFactory、CommonPages 等。另一个项目有实际测试(黄瓜)、测试步骤和测试页面。两个项目都安装了相同的 NuGet 包,第二个项目引用了套件框架。
一切似乎都很好:我有[BeforeTestRun]
,[BeforeScenario]
并且[AfterTestRun]
在框架上,当我运行测试时,它能够找到它们并执行它们,但是当代码到达 Cucumber 特性时它只是跳过它们,我的意思是它突出显示它们,但它确实不要钻入它们。
我检查了步骤定义并且它们在那里(我可以去定义并且无论它们在哪个项目中都可以找到它们)并且绑定似乎是正确的。 去定义 寻找定义
到目前为止,这是我的代码示例:
特征:在这个文件中,背景是指放置在框架项目中的文件,场景是指同一项目中的特征步骤。
Feature: Reports
As an admin
I want to access to the Reports
So I can see the information related to my product
Background:
When I navigate to the 'Reports' page
And I navigate to my product reports
@Regression
Scenario: I can open the report
When I click on the 'overall' tile
Then the report is displayed
And the data matches the database
背景步骤:
using UI.Suite.CommonPages.Pages;
using OpenQA.Selenium;
using TechTalk.SpecFlow;
namespace UI.Suite.CommonPages.Steps
{
[Binding]
public class SideBarNavigation
{
private readonly SideMenuComponent sideMenuComponent;
public SideBarNavigation(IWebDriver driver)
{
sideMenuComponent = new SideMenuComponent(driver);
}
[When(@"I navigate to the '(.*)' page")]
public void NavigateTo(string page)
{
sideMenuComponent.SideMenuNavigation(page);
}
}
}
场景步骤:
using NUnit.Framework;
using TechTalk.SpecFlow;
using UI.Products.Tests.Pages;
using OpenQA.Selenium;
namespace UI.Products.Tests.Steps
{
[Binding]
public class ReportsSteps
{
private readonly ReportsPage _reports;
public ReportsSteps(IWebDriver driver)
{
_reports = new ReportsPage(driver);
}
[When(@"I navigate to my product reports")]
public void WhenINavigateToMyProducts()
{
_reports.SelectMyProduct();
}
[When(@"I click on the '(.*)' tile")]
public void WhenIClickOnAGivenReport(string report)
{
_reports.SelectReportTileAndConfig(report);
}
[Then(@"the report is displayed")]
public void TheReportDisplays()
{
Assert.IsTrue(_reports.HasReportLoaded(), "The report has not loaded correctly");
}
[Then(@"the data matches the database")]
public void TheDataDisplays()
{
Assert.IsTrue(_reports.DoesUIMatchDB(), "The data on the database does not match the UI");
}
}
}
谢谢你的帮助。