jquery-simulate icon indicating copy to clipboard operation
jquery-simulate copied to clipboard

jQuery Simulate is a plugin to simulate browser mouse and keyboard real events

Results 5 jquery-simulate issues
Sort by recently updated
recently updated
newest added

I found your tool while looking for something to start with the recording/simulating/testing jquery-written "one-page" applications. Does this library support "automatic" or setuppable recording feature without modifications to used js-components?...

I'm not sure I'm using this right to simulate an mouseover on an element. I'm trying something like: ``` js $(".btn").first().simulate("mouseover", 339, 1023) ``` But it doesn't seem to pick...

Like: ``` createEvent: function(type, options) { if (/^mouse(over|out|down|up|move)|(dbl)?click$/.test(type)) { return this.mouseEvent(type, options); } else if (/^key(up|down|press)|change$/.test(type)) { return this.keyboardEvent(type, options); } }, ``` It'll support: `object.simulate("change")`.

The default browser actions in ie8 are not triggered on a click event when simply using .fireEvent() method of an element. Only the hanlders are called. This fix utilizes the...

https://github.com/eduardolundgren/jquery-simulate/commit/20173772227272fe17a17834802791fd86157d63#L1R123