๐Ÿ“ฆ microsoft / playwright

๐Ÿ“„ sectionselectorengine.js ยท 8 lines
1
2
3
4
5
6
7
8({
  query(root, selector) {
    return root.querySelector('section');
  },
  queryAll(root, selector) {
    return Array.from(root.querySelectorAll('section'));
  }
})