Files
dozzle-monitoring/integration/utils.js
2020-07-10 14:50:01 -07:00

9 lines
222 B
JavaScript

async function removeTimes(page) {
await page.waitForSelector("time");
await page.evaluate(() => {
(document.querySelectorAll("time") || []).forEach((el) => el.remove());
});
}
module.exports = { removeTimes };