吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 422|回复: 3
收起左侧

[学习记录] 某高校问卷网防诈骗自动填写正确答案

[复制链接]
Dl1Ft3Ht9 发表于 2024-10-30 01:04
测试链接:https://www.wenjuan.group/s/iQFzQz6/

var questionpageIdListname;
var question;
var question_type;
var optionGroupListProcessed;

// 单选多选选择
function answerParse(i, question) {
    var lists = document.querySelectorAll('.question-box');
    lists[i - 1].querySelectorAll("span input")[question].click();
}

// 填空
function textareaValue(number, newText) {
    try {
        var lists = document.querySelectorAll('.question-box');
        var inputDom = lists[number - 1].querySelector('textarea');
        inputDom.value = newText;
        inputDom.dispatchEvent(new Event('input'));
        inputDom.dispatchEvent(new Event('click'));
        inputDom.dispatchEvent(new Event('focus'));
        inputDom.dispatchEvent(new Event('blur'));
    } catch (err) {
        console.log(err);
    }
}

let student = {"name":"小k","xuehao":"128","classname":"2023班"}; // 前三题自定义

window.scrollTo(0, document.body.scrollHeight);

questionpageIdListname = Object.values(window.globalData.project.pageList)[0];

// 处理问题
for (var i = 0; i < questionpageIdListname.question_list.length; i++) {
    var theTitle = i + 1;
    question = questionpageIdListname.question_list[i];
    question_type = question.question_type;

    if (question_type == 6) {
        if (i == 0) {
            textareaValue(theTitle, student.name);
        }
        if (i == 1) {
            textareaValue(theTitle, student.xuehao);
        }
        if (i == 2) {
            textareaValue(theTitle, student.classname);
        }
    }
    if ([2, 3].includes(question_type)) {
        optionGroupListProcessed = question.optionGroupListProcessed[0];
        for (var d = 0; d < optionGroupListProcessed.option_list.length; d++) {
            var duooption = optionGroupListProcessed.option_list[d].custom_attr.is_correct;
            if (duooption == 1) {
                answerParse(theTitle, d);
            }
        }
    }
}```

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

yt1010306 发表于 2024-10-30 10:29
好用,这个方法能适用其他的答题系统吗?
willallen 发表于 2024-10-30 11:02
yt1010306 发表于 2024-10-30 10:29
好用,这个方法能适用其他的答题系统吗?

比如网络考试自动答题?
yt1010306 发表于 2024-10-30 11:05
willallen 发表于 2024-10-30 11:02
比如网络考试自动答题?

对头啊。能匹配个AI自动搜题就好了。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 11:17

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表