Context:
- Playwright Version: 1.1.1
- Operating System: Windows
- Node version: 14.4.0
- Browser: WebKit
- Extra: Process running inside GitHub Actions; code running in a ServiceWorker context.
Code Snippet
(async function () {
const response = await fetch(url)
const bytes = await response.arrayBuffer()
const module = await WebAssembly.compile(bytes)
return module
})()
Describe the bug
Throws an Error with the message Can't find variable: WebAssembly. Code works on Linux WebKit and macOS WebKit – WebAssembly is found.
Context:
Code Snippet
Describe the bug
Throws an
Errorwith the messageCan't find variable: WebAssembly. Code works on Linux WebKit and macOS WebKit –WebAssemblyis found.