Update chrome.js

This commit is contained in:
Namhyeon Go 2022-02-14 15:07:53 +09:00 committed by GitHub
parent 58b7dc34f1
commit d71fa8f299
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1179,6 +1179,10 @@ var ChromeObject = function(interfaces) {
this.oAutoIt.callFunction("MouseWheel", ["down"]); this.oAutoIt.callFunction("MouseWheel", ["down"]);
}; };
this.getReadyState = function() {
return this.getEvaluatedValue("document.readyState");
};
this.create(); this.create();
}; };
ChromeObject.prototype = new STD.EventableObject(); ChromeObject.prototype = new STD.EventableObject();