Наброски сценария огурца запускаются только один раз, даже если есть 3 сценария - PullRequest
0 голосов
/ 22 марта 2020
  • .feature файл:
Feature: Test Log In Functionality

  Scenario: The user should be able to login with correct userName & Password
    Given user is on Login Page
    When user enters the correct UserName & Password
    Then user gets the Confirmation

  Scenario Outline: User should Log In with below credentials
    Given user is on Login Page
    When user enters the correct Email <UserName>
    And user enters the correct Password <Password>
    And user enters the Log In Button
    Then user gets the Confirmation

    Examples: 
      | UserName             | Password  |
      | shoryak3@outlook.com | Test@1234 |
      | tim@Testmail.com     | trpass    |
      | Rich@TestMail.com    | rwpass    |

1 Ответ

1 голос
/ 22 марта 2020

Я быстро проверил ваш файл функций. Я надеюсь, что строка - .feature file: не является частью вашего файла функций. Если это так, вы получите cucumber.runtime.CucumberException: gherkin.ParserException$CompositeParserException: Parser errors:

после запуска вашего файла функций, и я вижу, что он работает без проблем. Пожалуйста, обратитесь к скриншоту ниже для вашей справки. попробуйте перезапустить ваш intellij и запустить его еще раз

enter image description here

...