@Grassman said in BAS can not handle Press & Hold captcha:
I want to press & hold a button, which is impossible with BAS.
Possible.
Id, is on auto increment feature so it says NULL
var mysql = require('mysql2');
var con = mysql.createConnection({
host: "localhost",
user: "root",
password: "",
database: "indirimyedb"
});
con.connect(function(err) {
if (err) throw err;
var sql = "INSERT INTO token (id,token,cookie,aktif) VALUES (NULL, '{{Token}}', '[[COOKIES]]', '1' )";
con.query(sql, function (err, result) {
if (err) throw err;
});
});
ERROR IS;
