1. ホーム
  2. java

問題を自動的に選択して回答し、その時間を自動的に修正するスクリプト

2022-02-23 16:21:47
<パス <ブロッククオート

このスクリプトは、作者がとある事情で開発したものです。急いで書いたわけではないので、この投稿の時点でもコードは残っています。
スクリプトは、その使用方法を説明するためのものです。
2020-11-1 学習とコミュニケーションのためにのみ使用し、他の用途には使用しない。

// ==UserScript==
// @name Vocational Education Cloud Auto-Answer
// @namespace http://zjy.com
// @version 1.0
// @description VCE Cloud AutoQuestions
// @author Zhang Chenxi
// @match https://zjy2.icve.com.cn/*
// @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js
// @grant GM_xmlhttpRequest
// @grant GM_download
// ==/UserScript==
 var result = "";
(function() {
  $(function(){
      function init_word(){
        var quesion_list = $(".e-q-q");
        var question_number = quesion_list.length;
        for(var i=0;i<question_number;i++){
            runAsync("q="+quesion_list[i].innerText,i);
        }
        var x = 15*question_number;//maximum submission time, in s
        var y = 8*question_number;// the shortest submission time, in s
        var rand = parseInt(Math.random() * (x - y + 1) + y);
        $("input[name='useTime']").val(rand);
        $("input[name='UseTime']").val(rand);
          $(".e-quest-header").append("

This submission took about "
+ Math.round(rand/60)+"minutes"+(rand%60)+"seconds
"
); // $(".e-quest-header").append("
-All in all the years are long, yet worth the wait-"); } window.setTimeout( init_word, 2000 ); }); })(); function get_option(true_answer,question_id){ var option_list = $(".e-a-g ul")[question_id]; var option_length = $(option_list).children().length; for(var i=0;i<option_length;i++){ var answert_1 = $($(option_list).children()[i]).children(".ErichText.destroyTitleButton")[0].innerText; if(answers_1 == true_answer){ $(option_list).children()[i].click(); break; }else{ if(i==option_length-1){ var max = option_length-1;//maximum submission time, in s var min = 0;// shortest commit time, in s var rand = parseInt(Math.random() * (max - min + 1) + min); $(option_list).children()[rand].click(); var c = ["A","B","C","D"]; console.log("第"+(question_id+1)+"问题未找到答案,系统随机选择"+c[rand] ); } } } } function runAsync(data_ry,question_id){ GM_xmlhttpRequest({ method: "POST", url: "",//interface data:data_ry, headers: { "Content-Type": "application/x-www-form-urlencoded;charset=utf-8" }, onload: function(response) { get_option(response.responseText.trim(),question_id); } }); }

使用効果。