(js: string)
| 99 | |
| 100 | // Wrapper of pushTask and executeJavaScript. |
| 101 | pushJavaScript(js: string) { |
| 102 | this.pushTask(cb => this.browser.executeJavaScript(js, () => cb())); |
| 103 | } |
| 104 | |
| 105 | // Return cookie string in the format of |document.cookie|, but include http |
| 106 | // only cookies. |
no test coverage detected