兰州大学校园网自动登录脚本

兰州大学校园网自动登录

// ==UserScript==
// @name         兰州大学校园网自动登录脚本
// @namespace    http://tampermonkey.net/
// @version      2024-09-02
// @description  兰州大学校园网自动登录
// @author       Wxliu
// @match        http://10.10.0.166/srun_portal_pc?ac_id=*
// @icon         http://10.10.0.166/static/lzu/images/logo.png
// @grant        none
// @run-at       document-start
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    const username=""
    const password=""
    //延时900ms开始登录,防止加载不完全
    setTimeout(function() {
        //点击账号登录
        document.querySelector("body > div.login-panel.active > div.tab-container > div:nth-child(2)").click()
        //开启记住账号
        document.querySelector("#remember").checked=true
        //选择elearning
        document.querySelector("#domain").selectedIndex=1
        //输入账号
        document.querySelector("#username").value=username
        //输入密码
        document.querySelector("#password").value=password
        //点击登录
        document.querySelector("#login").click()
    }, 900);
})();