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

@ -1171,13 +1171,17 @@ var ChromeObject = function(interfaces) {
this.oAutoIt.callFunction("MouseClick", ["left"]); this.oAutoIt.callFunction("MouseClick", ["left"]);
}; };
this.mouseWheelUp = function() { this.mouseWheelUp = function() {
this.oAutoIt.callFunction("MouseWheel", ["up"]); this.oAutoIt.callFunction("MouseWheel", ["up"]);
}; };
this.mouseWheelDown = function() { this.mouseWheelDown = function() {
this.oAutoIt.callFunction("MouseWheel", ["down"]); this.oAutoIt.callFunction("MouseWheel", ["down"]);
}; };
this.getReadyState = function() {
return this.getEvaluatedValue("document.readyState");
};
this.create(); this.create();
}; };