(context, selector, text)
| 440 | @step("User finds '{selector}' and selects \"{text}\"") |
| 441 | @step('User finds "{selector}" and selects \'{text}\'') |
| 442 | def select_option_by_text(context, selector, text): |
| 443 | sb = context.sb |
| 444 | text = normalize_text(text) |
| 445 | sb.select_option_by_text(selector, text) |
| 446 | |
| 447 | |
| 448 | @step("Find '{selector}' and select '{text}' by {option}") |
nothing calls this directly
no test coverage detected