Skip to content

Commit

Permalink
Added wasm selecting routine for ogv, still emits error
Browse files Browse the repository at this point in the history
  • Loading branch information
yusungsim committed Feb 8, 2024
1 parent e70a683 commit 1537842
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion tests/online/ogv/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ import { delay } from '../../../dist/tests/test-utils.cjs'
export default async function test(analyser) {
const url = 'https://brionv.com/misc/ogv.js/demo/'
const page = await analyser.start(url, { headless: true })
await delay(5000)

const beSelect = page.locator("#player-backend")
await beSelect.waitFor({state: 'visible'})

const playButton = page.getByTitle('Play')
await playButton.waitFor({state: 'visible'})

await beSelect.selectOption('Web Assembly')

await playButton.click()

await delay(10000)

return await analyser.stop()
}

0 comments on commit 1537842

Please sign in to comment.