Url Xpath attr oos Actions



Retailer Xpath attr oos
Lululemon //button[text()='Add to Bag'] aria-disabled true
Aritzia //a[@title='L'] data-inventorystatus Sold Out Online
Best Buy //button[contains(@class, 'addToCartButton')] disabled


Xpath console test snippet

var xpath = "//button[text()='Add to Bag']";
var matchingElement = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;

console.log(matchingElement);

matchingElement.getAttribute('aria-disabled');