(html: string)
| 36 | } |
| 37 | |
| 38 | export function removeMetaFromHTML(html: string) { |
| 39 | return html.replace(/<meta charset='utf-8'>/g, ""); |
| 40 | } |
| 41 | |
| 42 | export async function insertParagraph(page: Page) { |
| 43 | await page.keyboard.type("Paragraph"); |
no outgoing calls
no test coverage detected