When I have 1 variable it works, but I need 2 and then it wrote error.
product = "Air Force 1 Low"
color = "White"
findJS = (
"""
const $xOne = xp =>document.evaluate(xp, document, null,XPathResult.FIRST_ORDERED_NODE_TYPE,
null).singleNodeValue;
($xOne("//*[contains(text(), """+product+""")]/../following-sibling::p/a[contains(text(),
"""+color+""")]")).click();
"""
)