(context, selector, text)
| 279 | @step("User sets value of \"{selector}\" to '{text}'") |
| 280 | @step('User sets value of \'{selector}\' to "{text}"') |
| 281 | def set_value(context, selector, text): |
| 282 | sb = context.sb |
| 283 | text = normalize_text(text) |
| 284 | sb.set_value(selector, text) |
| 285 | |
| 286 | |
| 287 | @step("Switch to iframe '{frame}'") |
nothing calls this directly
no test coverage detected