(context, substring)
| 969 | @step("The title should contain '{substring}'") |
| 970 | @step('The title should contain "{substring}"') |
| 971 | def assert_title_contains(context, substring): |
| 972 | sb = context.sb |
| 973 | substring = normalize_text(substring) |
| 974 | sb.assert_title_contains(substring) |
| 975 | |
| 976 | |
| 977 | @step("Open new tab") |
nothing calls this directly
no test coverage detected
searching dependent graphs…