Shandong University Psychology Course Wisdom Tree Brushing Course

Mathematics students, let me study mental health?
Insert picture description here

Automatically swipe the wisdom tree course
Can automatically answer questions, automatically click the next lesson, automatically mute, automatically 1.5x

Step 1: Open the browser, press F12 and click on the console (console)
Part 2: Enter the following code

document.querySelector('.volumeIcon').click();//静音
document.getElementsByClassName('speedTab15')[0].click();//1.5倍速
setInterval(function(){
    
    
    if(document.getElementsByClassName('passTime')[0].style.width == '100%'){
    
    
        setTimeout(function(){
    
    
            //点击下一集
            document.getElementById('nextBtn').click();
        },1000);
        setTimeout(function () {
    
    
            //延迟4秒执行调节播放速率
            document.querySelector('.volumeIcon').click();
						document.getElementsByClassName('speedTab15')[0].click();//先设置一下播放速率为1.5倍速
        },4000)
    }
    
 if(document.getElementsByClassName('bigPlayButton pointer')[0].style.display=='block')
    {
    
    //用于检测答题弹窗是否出现,并将其关闭
    document.getElementsByClassName('topic-item')[0].click()//选A
    document.getElementsByClassName('el-dialog__footer')[5].click()
    document.getElementsByClassName('el-dialog__headerbtn')[5].click()//点击按钮关闭
    document.getElementsByClassName('playButton')[0].click()//点击播放继续
    }
 
},3000);

Guess you like

Origin blog.csdn.net/qq_33037375/article/details/109276135