Trying to test an Ember application with Cucumber and Capybara-webkit to run the javascript. The Ember code runs in a regular browser, and produces a welcome message.
I've created a Cucumber feature which looks for the welcome message generated by the Ember code, and it doesn't show up. I've dumped the 'page.body' to see what's there, and there's nothing.
I've added a
jQuery ->
$("body").append("Foo!")
and it shows up, so I know that the javascript is being run.
Thanks!