您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Python如何利用Selenium實現自動觀看學習通視頻的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
以信號與系統課程為例,直接輸入網址則出現登錄界面:
由于學號登錄需要驗證碼,因此選擇電話登錄:
直接在開發者工具中找到手機號輸入框、密碼輸入框和登錄按鈕,并進行輸入和點擊:
import time from selenium.webdriver import Chrome web = Chrome() web.get('https://mooc2-ans.chaoxing.com/mycourse/stu?courseid=203430340&clazzid=43992529&cpi=93003203&enc=9726840999ffc15f3f441bb5466882e6&t=1637651449831&pageHeader=1') # 登錄 phone = web.find_element_by_class_name('ipt-tel') pwd = web.find_element_by_class_name('ipt-pwd') login = web.find_element_by_class_name('btn-big-blue') phone.send_keys('電話號碼') pwd.send_keys('密碼') login.click() time.sleep(2)
登錄成功后,如下:
找到所有的知識點頁面:
all_no_list = web.find_elements_by_xpath('//span[@class="catalog_points_yi"]')
執行以上代碼后,發現錯誤,通過開發者工具發現其在iframe中,因此需要先進入iframe:
# 進入iframe frame_content = web.find_element_by_xpath('//*[@id="frame_content-zj"]') web.switch_to.frame(frame_content) time.sleep(2) # 查找所有未完成的知識點頁面 all_no_list = web.find_elements_by_xpath('//span[@class="catalog_points_yi"]')
緊接著進入第一個頁面:
# 跳轉到第一個知識點頁面 all_no_list[0].click() web.switch_to.window(web.window_handles[-1]) # 跳轉到該知識點界面 time.sleep(5)
查找未完成的知識點的div(同樣需要進入iframe):
iframe = web.find_element_by_id('iframe') # 每次刷新后,都要進入內部iframe web.switch_to.frame(iframe) # 篩選,去除已完成的知識點 k_points = web.find_elements_by_css_selector('div.ans-attach-ct:not(.ans-job-finished)')
進入視頻的播放:
num = len(k_points) for i in range(0, num): k_point = k_points[i] # 查找任務圖標個數,1為知識點,0為不是知識點 icon_num = len(k_point.find_elements_by_xpath('./div[contains(@class,"ans-job-icon")]')) if icon_num == 0: # 再次篩選,去除不是知識點的div continue # 進行視頻的播放 video_iframe = k_point.find_element_by_xpath('./iframe') # 視頻iframe print(video_iframe) time.sleep(2) web.switch_to.frame(video_iframe) # 進入視頻iframe time.sleep(2) web.find_element_by_class_name('vjs-big-play-button').click() # 點擊播放按鈕 time.sleep(1) web.find_element_by_xpath('//*[@id="video"]/div[5]/div[6]/button').click() # 靜音 # 播放和暫停按鈕 pause_btn = web.find_element_by_xpath('//button[contains(@class,"vjs-play-control")and ' 'contains(@class,"vjs-control")and contains(@class,"vjs-button")]') while (1): # 播放等待 time.sleep(1) # 每1秒,檢查視頻是否播放完畢 if (pause_btn.get_attribute('title') == "重播"): # 點擊后播放,即播放完畢狀態 break print('視頻播放完畢') # 視頻播放完畢,退出播放iframe,然后退出循環,再次查找該頁面的所有知識點(k_points) web.switch_to.default_content() print('退出知識點iframe') time.sleep(2)
經過測試后,發現播放完一個視頻后,k_points
(即知識點列表)發生改變,不能繼續使用該列表中的元素,因此需要重新獲取,則需要刷新頁面。
觀看一個視頻方法如下:
# 完成一個頁面的所有未完成的知識點 def view_one_page_points(): while (1): iframe = web.find_element_by_id('iframe') # 每次刷新后,都要進入內部iframe web.switch_to.frame(iframe) # 篩選,去除已完成的知識點 k_points = web.find_elements_by_css_selector('div.ans-attach-ct:not(.ans-job-finished)') num = len(k_points) flag = False for i in range(0, num): if i == (num - 1): # 是最后一個,表示該頁刷完 flag = True k_point = k_points[i] # 查找任務圖標個數,1為知識點,0為不是知識點 icon_num = len(k_point.find_elements_by_xpath('./div[contains(@class,"ans-job-icon")]')) if icon_num == 0: # 再次篩選,去除不是知識點的div continue # 進行視頻的播放 video_iframe = k_point.find_element_by_xpath('./iframe') # 視頻iframe print(video_iframe) time.sleep(2) web.switch_to.frame(video_iframe) # 進入視頻iframe time.sleep(2) web.find_element_by_class_name('vjs-big-play-button').click() # 點擊播放按鈕 time.sleep(1) web.find_element_by_xpath('//*[@id="video"]/div[5]/div[6]/button').click() # 靜音 # 播放和暫停按鈕 pause_btn = web.find_element_by_xpath('//button[contains(@class,"vjs-play-control")and ' 'contains(@class,"vjs-control")and contains(@class,"vjs-button")]') while (1): # 播放等待 time.sleep(1) # 每1秒,檢查視頻是否播放完畢 if (pause_btn.get_attribute('title') == "重播"): # 點擊后播放,即播放完畢狀態 break print('視頻播放完畢') # 視頻播放完畢,退出播放iframe,然后退出循環,再次查找該頁面的所有知識點(k_points) web.switch_to.default_content() print('退出知識點iframe') time.sleep(2) web.refresh() # 刷新頁面,之后需重新進入iframe time.sleep(2) print('刷新頁面') break if flag: # 該頁面知識點播放完畢 break pass
之前在主頁面獲取了所有的知識點頁面:
all_no_list = web.find_elements_by_xpath('//span[@class="catalog_points_yi"]')
和上一點的k_points
需要重新獲取類似,all_no_list
每完成一個頁面則也需要重新獲取,因此代碼如下:
while (1): # 進入iframe frame_content = web.find_element_by_xpath('//*[@id="frame_content-zj"]') web.switch_to.frame(frame_content) time.sleep(2) # 查找所有未完成的知識點頁面 all_no_list = web.find_elements_by_xpath('//span[@class="catalog_points_yi"]') list_num = len(all_no_list) #知識點頁面個數 if list_num == 0: # 沒有知識點頁面,即全部刷完 break # 跳轉到第一個知識點頁面 all_no_list[0].click() web.switch_to.window(web.window_handles[-1]) # 跳轉到該知識點界面 time.sleep(5) ##### view_one_page_points() # 播放該知識點頁面的所有未完成的知識點視頻 ##### print('完成一個知識點頁面...') web.close() # 關閉當前窗口 # 該頁面知識點完畢,關閉當前窗口,選擇下一個知識點窗口 web.switch_to.window(web.window_handles[0]) # 變更視角到該課程主界面 time.sleep(1) # 刷新頁面 web.refresh() time.sleep(2) print('刷新主頁面') pass
import time from selenium.webdriver import Chrome web = Chrome() web.get('https://mooc2-ans.chaoxing.com/mycourse/stu?courseid=203430340&clazzid=43992529&cpi=93003203&enc=9726840999ffc15f3f441bb5466882e6&t=1637651449831&pageHeader=1') # 1. 登錄 phone = web.find_element_by_class_name('ipt-tel') pwd = web.find_element_by_class_name('ipt-pwd') login = web.find_element_by_class_name('btn-big-blue') phone.send_keys('手機號碼') pwd.send_keys('密碼') login.click() time.sleep(2) # 完成一個頁面的所有未完成的知識點 def view_one_page_points(): while (1): iframe = web.find_element_by_id('iframe') # 每次刷新后,都要進入內部iframe web.switch_to.frame(iframe) # 篩選,去除已完成的知識點 k_points = web.find_elements_by_css_selector('div.ans-attach-ct:not(.ans-job-finished)') num = len(k_points) flag = False for i in range(0, num): if i == (num - 1): # 是最后一個,表示該頁刷完 flag = True k_point = k_points[i] # 查找任務圖標個數,1為知識點,0為不是知識點 icon_num = len(k_point.find_elements_by_xpath('./div[contains(@class,"ans-job-icon")]')) if icon_num == 0: # 再次篩選,去除不是知識點的div continue # 進行視頻的播放 video_iframe = k_point.find_element_by_xpath('./iframe') # 視頻iframe print(video_iframe) time.sleep(2) web.switch_to.frame(video_iframe) # 進入視頻iframe time.sleep(2) web.find_element_by_class_name('vjs-big-play-button').click() # 點擊播放按鈕 time.sleep(1) web.find_element_by_xpath('//*[@id="video"]/div[5]/div[6]/button').click() # 靜音 # 播放和暫停按鈕 pause_btn = web.find_element_by_xpath('//button[contains(@class,"vjs-play-control")and ' 'contains(@class,"vjs-control")and contains(@class,"vjs-button")]') while (1): # 播放等待 time.sleep(1) # 每1秒,檢查視頻是否播放完畢 if (pause_btn.get_attribute('title') == "重播"): # 點擊后播放,即播放完畢狀態 break print('視頻播放完畢') # 視頻播放完畢,退出播放iframe,然后退出循環,再次查找該頁面的所有知識點(k_points) web.switch_to.default_content() print('退出知識點iframe') time.sleep(2) web.refresh() # 刷新頁面,之后需重新進入iframe time.sleep(2) print('刷新頁面') break if flag: # 該頁面知識點播放完畢 break pass while (1): # 進入iframe frame_content = web.find_element_by_xpath('//*[@id="frame_content-zj"]') web.switch_to.frame(frame_content) time.sleep(2) # 查找所有未完成的知識點頁面 all_no_list = web.find_elements_by_xpath('//span[@class="catalog_points_yi"]') list_num = len(all_no_list) #知識點頁面個數 if list_num == 0: # 沒有知識點頁面,即全部刷完 break # 跳轉到第一個知識點頁面 all_no_list[0].click() web.switch_to.window(web.window_handles[-1]) # 跳轉到該知識點界面 time.sleep(5) ##### view_one_page_points() # 播放該知識點頁面的所有未完成的知識點視頻 ##### print('完成一個知識點頁面...') web.close() # 關閉當前窗口 # 該頁面知識點完畢,關閉當前窗口,選擇下一個知識點窗口 web.switch_to.window(web.window_handles[0]) # 變更視角到該課程主界面 time.sleep(1) # 刷新頁面 web.refresh() time.sleep(2) print('刷新主頁面') pass
bug:
如以下存在該div的頁面,則無法讀取其中視頻。
感謝各位的閱讀!關于“Python如何利用Selenium實現自動觀看學習通視頻”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。