(context, link)
| 38 | |
| 39 | @step('Click link {link}') |
| 40 | def click_link(context, link): |
| 41 | if link.startswith('"') or link.startswith("'"): |
| 42 | link = link[1:] |
| 43 | if link.endswith('"') or link.endswith("'"): |
| 44 | link = link[:-1] |
| 45 | sb = context.sb |
| 46 | sb.click_link(link) |
| 47 | |
| 48 | |
| 49 | @step('Save a screenshot to the logs') |
nothing calls this directly
no test coverage detected
searching dependent graphs…