opensslconf.h:14: fatal error: openssl/configuration.h: No such file or directory
const parent_xpath = '//div[@class="parent-class-name"]'
let parent_elems = document.evaluate(parent_xpath, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null)
for (let i = 0; i < parent_elems.snapshotLength; i++) {
let parent_elem = parent_elems.snapshotItem(i)
let child_elem = parent_elem.childNodes[0];
console.log(child_elem)
}