Closed
Description
from pytest_steps import test_steps
from seleniumbase import BaseCase
class MMMM(BaseCase):
@test_steps('step_a', 'step_b', 'step_c')
def test_suite(self):
# Step A
print("step a")
assert not False # replace with your logic
intermediate_a = 'hello'
yield
# Step B
print("step b")
assert not False # replace with your logic
yield
# Step C
print("step c")
new_text = intermediate_a + " ... augmented"
print(new_text)
assert len(new_text) == 56
yield
Metadata
Metadata
Assignees
Labels
No labels