(context, text)
| 149 | @step("Text '{text}' should be visible") |
| 150 | @step('Text "{text}" should be visible') |
| 151 | def assert_text(context, text): |
| 152 | sb = context.sb |
| 153 | text = normalize_text(text) |
| 154 | sb.assert_text(text) |
| 155 | |
| 156 | |
| 157 | @step("Assert exact text '{text}' in '{selector}'") |
nothing calls this directly
no test coverage detected