plwr 0.21.0

Playwright CLI for browser automation using CSS selectors.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head><title>console test</title></head>
<body>
  <h1>Console Test</h1>
  <script>
    console.log('page loaded');
    console.warn('deprecation warning');
    console.error('something broke');
    console.info('version 1.0');
    console.debug('init complete');
  </script>
</body>
</html>