* Get HTML from the page. Useful for asserting something rendered that * you expected. * * @param selector CSS Selector for the element's HTML you want
(selector?: string)
| 203 | * @param selector CSS Selector for the element's HTML you want |
| 204 | */ |
| 205 | getHtml(selector?: string) { |
| 206 | return getHtml(this.page, selector); |
| 207 | } |
| 208 | |
| 209 | /** |
| 210 | * Get a cheerio instance of an element from the page. |
no test coverage detected