Returns the element attribute value for the given attribute name.
page .goto('https://test.k6.io/browser.php') .then(() => { const textInput = page.locator('#text1'); const attribute = textInput.getAttribute('onfocus'); console.log(attribute); });