UNPKG

ez-shp-storefront

Version:

A helper function collection for Shopify storefront.

6 lines (5 loc) 393 B
const TranslateXPath = "translate(., 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')"; export function getElementByContent(content) { const xPathButtons = document.evaluate(`//button[contains(${TranslateXPath}, "${content}") or contains(${TranslateXPath}, "${content.replace(/ /g, "")}")]`, document, null, XPathResult.ANY_TYPE, null); return xPathButtons.iterateNext(); }