日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 综合教程 >内容正文

综合教程

法宣在线自动考试

發布時間:2023/12/15 综合教程 29 生活家
生活随笔 收集整理的這篇文章主要介紹了 法宣在线自动考试 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

說明

僅供學習交流
法宣在線考試, 自動獲取答案, 完成考試.

使用方法

使用chrome瀏覽器登錄法宣在線, 進入考試頁面;
單擊瀏覽器的地址欄, 按快捷鍵F12; 或者使用菜單: 更多工具 - 開發者工具;
定位到console/控制臺面板, 粘貼代碼, 回車;
程序開始執行, 每秒答一道題, 等待答題完成;

代碼

var answer = [];
var times = 0;
var totalTimes = 0;

var Next = function () {
    var questionId = answer[times]['questionId']
    console.log("questionId", questionId)
    $(`[id$=_${questionId}]`).click();
    setTimeout(
        function () {
            var strAns = answer[times]['answerNo'];
            var arrA = strAns.split('');
            for (a of arrA) {
                console.debug(a);
                $('input[value=' + a + ']').click()
            }
            times += 1;
            if (times < totalTimes) {
                Next();
            }
            else {
                console.debug('完成');
            }
        }, 1000);
};

var start = function () {
    console.debug('開始');
    let cookie = document.cookie;
    let matchArray = cookie.match(/_EXAM(\d+)_PAPER(\d+)_SERIES(\d+)/);
    let examId = matchArray[1];
    let paperId = matchArray[2];
    let seriesId = matchArray[3];
    let answerUrl = `http://www.faxuanyun.com//ess/service/getpaper?paperId=${paperId}&series=${seriesId}_answer`
    fetch(answerUrl, {
        "headers": {
            "cache-control": "no-cache",
            "pragma": "no-cache",
            "upgrade-insecure-requests": "1"
        },
        "referrerPolicy": "strict-origin-when-cross-origin",
        "body": null,
        "method": "GET",
        "mode": "cors",
        "credentials": "include"
    }).then(res => res.text()).then(body => {
        console.debug("test", body);
        let answerString = body.split("\n")[2];
        answer = JSON.parse(answerString);
        totalTimes = answer.length;
        Next();
    });
}
start();

原理

這個地址可以獲取到考試的答案: http://xf.faxuan.net/ess/service/getpaper?paperId=${paperId}&series=${seriesId}_answer

總結

以上是生活随笔為你收集整理的法宣在线自动考试的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。