Packages

Playwright Assets is a package for installing and running test assets in Playwright Node.js and Elixir implementations.

Current section

Files

Jump to
playwright_assets priv assets redirectloop2.html
Raw

priv/assets/redirectloop2.html

<script>
setTimeout(() => {
window.location.href = window.location.href.replace('loop2', 'loop1');
}, 1);
</script>