在测试浏览器中无法识别SpecFlow功能

时间:2018-12-11 16:58:55

标签: selenium visual-studio-2015 automated-tests nunit specflow

我添加了NUnit,NUnit测试适配器,SpecFlow,并且我的测试在测试浏览器中无法识别。如果我右键单击功能文件运行测试,它表示构建成功,但是什么也没有发生,并且在0,001秒后终止。我也检查了默认处理器体系结构,但是还可以。我该如何解决任何想法?

登录功能

Feature: Login
    Test the login functionality of application
    Will verify if the username and password combinations are working as expected

@Regressiontest
@Browser:Chrome
Scenario Outline: Verify if the login functionality is working (+ve case)
    Given I have navigated to my application
    And I typed the <username> and <password>
    When I click login button
    Then I should see the EA page

Examples:
 | username | password |
 | admin    | admin    |
 | karthik  | karthik  |

1 个答案:

答案 0 :(得分:0)

NUnit和NUnit3测试适配器的版本不同,因此这就是测试浏览器中无法识别测试的原因。