1

我在 pytest-bdd 上实现了这样的场景

Scenario: Shopping Cart Verification
  Given I am out for shopping shopping and took a cart
  Given I added "2" "Tomatoes" to the cart
  Given I added "3" "Bread" to the cart
  Then there is "3" "Tomatoes" in the cart
  Then there is "3" "Bread" in the cart
  Then there are "5" items in the cart

在这里我们可以看到该步骤(然后购物车中有“3”“西红柿”)将失败,测试执行将在那里停止,其余步骤将不会执行。那么即使pytest bdd中的一个或多个步骤失败,有什么方法可以继续测试执行吗?

4

1 回答 1

0

我看不到保持单个场景运行的方法,但是每个测试只有一个断言是一种很好的做法。在这种情况下,这会导致大量重复,但您可以使用背景来删除它:

Feature: Shopping cart

  Background:
    Given I am out for shopping shopping and took a cart
    Given I added "2" "Tomatoes" to the cart
    Given I added "3" "Bread" to the cart

  Scenario: The tomatoes are in the cart
    Then there is "3" "Tomatoes" in the cart

  Scenario: The bread is in the cart
    Then there is "3" "Bread" in the cart

  Scenario: The items are in the cart
    Then there are "5" items in the cart

我同意这有点不自然,但这是我能想到的最好的。也许别人有更好的主意。

于 2021-05-05T06:55:06.307 回答