jokerlicf 发表于 2020-4-17 11:39

基于selenium模块的江门市干部培训网络学院自动选课脚本

适用对象:江门市网络干部培训学院
功能:自动化批量选取指定页数范围内的课程。
使用方法:在终端输入账号密码后,浏览器自动弹出网站页面,15秒内输入验证码,然后输入开始和结束页数。

https://static.52pojie.cn/static/image/hrline/1.gif

# -*- coding: utf-8 -*-       

from selenium import webdriver       
from selenium.webdriver.chrome.options import Options
from selenium.common.exceptions import TimeoutException       
from selenium.webdriver.support.ui import WebDriverWait # available since 2.4.0
import time
import re
import random
from time import sleep

driver = webdriver.Chrome(executable_path="chromedriver.exe")

def login(username,passwd):
        nickName=driver.find_element_by_id('nickName')
        sourcePassword=driver.find_element_by_id('sourcePassword')
        login_btn=driver.find_element_by_id('login_btn')
        nickName.send_keys(username)
        sourcePassword.send_keys(passwd)
        time.sleep(10)
        login_btn.click()
        time.sleep(random.uniform(2,5))
        try:
                driver.find_element_by_class_name("layui-layer-btn0").click()
        except:
                print('是否登录成功,若没成功登陆,请重新运行')       

def course_need_Add(course_need_add):
        course_need_add.click()
        time.sleep(random.uniform(2,3))
        course_need_add = driver.find_element_by_xpath('/html/body/div/div/div/div/div/a')# 详情页的选课
        course_need_add.click()
        time.sleep(random.uniform(1,3))
        driver.find_element_by_xpath('/html/body/div/div/a').click()
        time.sleep(random.uniform(1,3))
        driver.find_element_by_xpath('/html/body/div/div/a').click()       
        driver.back()
        return print('选课成功')

base_url = "https://gbpx.jiangmen.cn/"
username=input("请输入账号:")
passwd= input("请输入密码:")
print('请在浏览器网页登录界面账号密码自动填充后15秒内输入验证码')
driver.get(base_url)
driver.implicitly_wait(10)
now_window = driver.current_window_handle
login(username,passwd)
driver.implicitly_wait(15)       
driver.find_element_by_id('navLesson').click()#进入课程中心
driver.find_element_by_xpath('/html/body/div/div/div/div/div/div/div/div/a').click()#点击尾页
time.sleep(3)
pageTotal=driver.find_element_by_xpath('/html/body/div/div/div/div/div/div/div/div/a').text#获取总页数
print ("总共有"+pageTotal+"页课程")
pageTotal=int(pageTotal)
page_start=input("请输入开始选课的页数(纯数字):")
page_end=input("请输入开始选课的页数(纯数字,不得大于总页数):")
for page in range(page_start,page_end):
        number = driver.find_element_by_xpath('//*[@class="layui-input"]')
        number.clear()
        number.send_keys(page)
        driver.find_element_by_xpath('//*[@class="layui-laypage-btn"]').click()       
        driver.implicitly_wait(10)
        print ("第"+str(page)+"页")
        for i in range(1,11):#对单个列表内单个课程信息进行判断是否需要继续学习。
                xpath='/html/body/div/div/div/div/div/table/tbody/tr[{}]/td/a'
                couse_name='/html/body/div/div/div/div/div/table/tbody/tr[{}]/td/a'
                couse_name=couse_name.format(i)
                xpath=xpath.format(i)
                print(xpath)
                time.sleep(random.uniform(1,3))
                course_need_add = driver.find_element_by_xpath(xpath)
                couse_name = driver.find_element_by_xpath(couse_name).text
                print(course_need_add.text,couse_name)
                if course_need_add.text == '已选':
                        i = i + 1
                else:
                        course_need_Add(course_need_add)
                        time.sleep(random.uniform(1,3))
                        number = driver.find_element_by_xpath('//*[@class="layui-input"]')       
                        number.clear()
                        number.send_keys(page)
                        driver.find_element_by_xpath('//*[@class="layui-laypage-btn"]').click()       
                        time.sleep(5)
                        print("第" + str(page) + "页")



jokerlicf 发表于 2020-5-22 11:45

xtangi2 发表于 2020-4-29 23:09
大哥你好,请问有没有广东省干部培训学院,学习播放视频不能缩屏,一缩屏就停止了,有没有好的方法?麻烦帮 ...

我这边无账号,无法登陆查看是哪里的问题。

xtangi2 发表于 2020-4-29 23:09

大哥你好,请问有没有广东省干部培训学院,学习播放视频不能缩屏,一缩屏就停止了,有没有好的方法?麻烦帮一下,谢谢。
https://gbpx.gd.gov.cn/gdceportal
页: [1]
查看完整版本: 基于selenium模块的江门市干部培训网络学院自动选课脚本