This script clears all wishlist items on Myntra. Uses document.querySelector() and btn.click().
How to Use
- Open the wishlist page
- Open Browser DevTools → Console
- Paste the script
- Press Enter
- Let it run until completion
(async () => {
const delay = ms => new Promise(res => setTimeout(res, ms));
while (true) {
const btn = document.querySelector(".itemcard-removeIcon");
if (!btn) break;
btn.click();
await delay(300);
}
console.log("Wishlist cleared");
})();