venkate123
venkate123
@robertknight I tried to apply Hypothesis bookmarklet on local html. But after I click bookmarklet there was nothing changed. Could you teach me how to make it work? Thank you...
改进一下,适配多页,自动翻页,无需手动重复运行 ```js function addSongsAndCheckNext() { // 1. 点击当前页的所有歌曲并添加到歌单 var songs = document.getElementsByClassName('detail-fav-button'); for (var i = 0; i < songs.length; i++) { songs[i].click(); document.getElementsByClassName('dialog-playlist')[0].lastElementChild.click(); } // 2. 检查“下一页”按钮是否禁用 var nextPageButton...