Last active
January 18, 2021 12:43
-
-
Save troggy/4f8e8b1420822219ca9415cba10297bd to your computer and use it in GitHub Desktop.
Lamoda.ru — Выбрать все материалы неживотного происхождения (веганские)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const cruel = ['войлок', 'велюр', 'замша', 'кожа', 'натуральн', 'спилок', 'шерст', 'мех']; | |
const probablyCruel = (v) => cruel.find(e => v.startsWith(e)); | |
const checkVegan = () => { | |
[...document.querySelectorAll('.multifilter_material input[type=checkbox]')] | |
.forEach(e => !probablyCruel(e.parentNode.innerText) && e.click()); | |
document.querySelector('.multifilter__title').click(); | |
}; | |
checkVegan(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment