env-js icon indicating copy to clipboard operation
env-js copied to clipboard

A pure-JavaScript browser environment with early rubygem support.

Results 10 env-js issues
Sort by recently updated
recently updated
newest added

Is there a way to inspect the cookies set by the application? Something like `browser.cookies[name]` would be nice.

When making an xhr request env-js croaks when receiving a non-xml response regardless of content-type headers. this can be avoided like this: https://github.com/thatcher/env-js/commit/a46fe6b1ff59f0596c162ee01e94ff256ee47bfe#diff-19 Note: that commit contains one error -...

when clicking a link like ... envjs tries to follow the link and fails instead of executing the javascript. I haven't yet tried to fix this myself, the only reference...

Support for jQuery 1.4+ is not good. Per smparkes: 1.4 relies a lot more on event bubbling and that code in env.js (at least the Ruby fork) is not good....

[moving this issue here ...] Suppose I have a document like this one: ``` $(document).ready(function() { $('a.clickable').live('click', function(event) { document.title = 'live click event triggered'; return false; }); }); link...

Quite often I see "inline's" in backtraces and they are pretty maddening. Ideally they should be replaced with references to URLs, or filenames if possible. Here's an example backtrace: ```...

Implement XHR using async i/o, either through EM or through ruby threads.

Right now the option defaults may not be the same as the master fork. Revert to that but provide support for an .envjsrc file so that projects can override, rather...

The Ruby URI class used for parsing uri's in removing explicit ports in urls if it roundtrips. There's no evidence that HTML5 expects this to happen. It seems to in...

envjsrb assumes arguments are paths. It should allow URLs.