(path)
| 152 | } |
| 153 | |
| 154 | async getURL(path) { |
| 155 | // By this point browser should be loaded and extension should be started, but |
| 156 | // let's wait anuway |
| 157 | await this.waitForStartup(); |
| 158 | const url = new URL(path, this.extensionOrigin); |
| 159 | return url.href; |
| 160 | } |
| 161 | |
| 162 | async getChromiumMV2BackgroundPage() { |
| 163 | const targets = this.browser.targets(); |
no test coverage detected