我正在制作一个自动登录系统。它完美地填充了选项卡,但没有按下按钮。
我尝试查找按钮的ID,但没有,只有一种。
<button class="smscButton blue" type="submit">Aanmelden</button>
// ==UserScript==
// @name automatische login
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @include https://tsm.smartschool.be/login
// @require https://code.jquery.com/jquery-3.0.0-beta1.min.js
// ==/UserScript==
$('#login_form__username').val('The username');
$('#login_form__password').val('The password');
document.querySelector("input[type='submit']").click()
关于如何使其起作用以及为什么不起作用的任何想法?