mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-19 08:01:04 +00:00
Update chrome.js
This commit is contained in:
parent
58b7dc34f1
commit
d71fa8f299
|
@ -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();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user