UNPKG

ui5-test-runner

Version:
23 lines 694 B
<!DOCTYPE html> <html> <body> <H1>screenshot</H1> <p>Checks if the browser supports screenshot</p> <input type="text" id="first" value="first"> <input type="text" id="second" value="second"> <span style="font-size: 32rem;">&#128521;</span> <script src="/inject/post.js"></script> <script> document.getElementById('first').focus() const post = window['ui5-test-runner/post'] post('/_/log', { step:'screenshot' }) .then(() => { const current = document.activeElement return post('/_/log', { step: 'focus', current: current ? current.id : '' }) }) </script> </body> </html>