Culerity integration link is stale
Closed this issue · 4 comments
The link pointing to instructions for integrating Culerity with RVM appears stale. This might be a suitable replacement? https://rvm.io/integration/culerity
pull requests welcome. the project is pretty much dead though. i'm surprised anyone's still using it.
What other tools would you suggest using to for JavaScript integration
testing? I'm trying to use Culerity because WebKit and Selenium both fail
to trigger change listeners when used in my test.
Thanks for the reply!
Derrell
-- Derrell Durrett
On Jul 17, 2014 3:40 AM, "Alexander Lang" notifications@github.com wrote:
pull requests welcome. the project is pretty much dead though. i'm
surprised anyone's still using it.—
Reply to this email directly or view it on GitHub
#37 (comment).
I use capybara together with selenium, capybara-webkit and also poltergeist. I'm pretty sure capybara fixes the problem with the change listener, otherwise you have to trigger a change event manually, i.e. if you use jQuery $('#my-input').change()
. From capybara it would look something like page.execute_script("$('#my-input').change()")
.
Would you mind looking at my question on stackoverflow
http://stackoverflow.com/questions/24707119/why-is-my-javascript-change-event-not-triggered-in-my-test?
I've done exactly what you describe (in addition to many other things, like
using send-keys and such), and yet nothing happens. I'm sure there's
something trivial I've overlooked, but I can't find it, and I'd really
appreciate any tips in figuring out how to use the JavaScript testing tools
that are commonplace (and since this isn't nearly so complicated a piece of
code as to require unit testing, I'm pretty sure Jasmine and related tools
are overkill).
Thanks in advance,
Derrell
On Fri, Jul 18, 2014 at 6:16 AM, Alexander Lang notifications@github.com
wrote:
I use capybara together with selenium, capybara-webkit and also
poltergeist. I'm pretty sure capybara fixes the problem with the change
listener, otherwise you have to trigger a change event manually, i.e. if
you use jQuery $('#my-input').change(). From capybara it would look
something like page.execute_script("$('#my-input').change()").—
Reply to this email directly or view it on GitHub
#37 (comment).
Derrell Durrett
Boulder, Colorado