Created
October 3, 2021 15:35
-
-
Save Luchanso/d7c2164b34f4175012b27b3cdb5bd23c to your computer and use it in GitHub Desktop.
Delete all vk posts
This file contains hidden or 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
document.querySelectorAll('.ui_actions_menu._ui_menu.ui_actions_menu--actionSheet').forEach((item) => { | |
item.querySelectorAll('.ui_actions_menu_item').forEach((item2) => { | |
if (item2.innerHTML === 'Удалить запись') { | |
item2.click() | |
} | |
}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment