(text)
| 2 | |
| 3 | |
| 4 | def normalize_text(text): |
| 5 | text = text.replace("\\\\", "\\").replace("\\t", "\t").replace("\\n", "\n") |
| 6 | text = text.replace('\\"', '"').replace("\\'", "'") |
| 7 | return text |
| 8 | |
| 9 | |
| 10 | @step("Open '{url}'") |
no outgoing calls
no test coverage detected