我正試圖將值導入新選項卡上的元素,然後單擊提交以登錄。 我已經嘗試了許多變化,只是似乎無法得到它的工作。 function injectScript(){
var script = ' var e = document.getElementById("email"); var p = document.getElementById("password");'+
'e.value
我發送表單數據到登錄名/密碼然後想要點擊提交按鈕,問題出在表單驗證要求表單變髒。我直接分配值,這意味着表格不被認爲是髒的和被修改的。我已經嘗試過重點,但似乎也沒有工作。提交按鈕不會出現,因爲它沒有被驗證。 document.getElementById("email").focus();
document.getElementById("password").focus();
var e =