public
Description: Webrat - Ruby Acceptance Testing for Web applications
Homepage: http://gitrdoc.com/brynary/webrat/tree/master/
Clone URL: git://github.com/brynary/webrat.git

Comments for brynary's webrat   feed

jonathan commented on brynary/webrat Thu Jul 09 13:56:26 -0700 2009
Comment in 9a42304:

This change actually breaks all my selenium tests where I'm searching for a label.
fill_in("Name:", :with => name) now fails but
fill_in("student_name", :with => name) works (basically using the id of the textfield still works).

rjspotter commented on brynary/webrat Mon Jun 22 09:41:04 -0700 2009
Comment in 48a4ec9:

breaks tests that set @value with a string that has a newline

sermoa commented on brynary/webrat Mon Mar 30 03:11:40 -0700 2009
Comment in 461a77d:

Aha, note to anyone else who ever reads this: you have to use click_area instead of click_link. Use id or title to reference the area you want clicked.

sermoa commented on brynary/webrat Mon Mar 30 02:58:04 -0700 2009
Comment in 461a77d:

I notice the mention of image map support in the history. Does this mean that webrat supports clicking on map areas? Is it as simple as using click_link?

dstar commented on brynary/webrat Thu Mar 19 07:51:59 -0700 2009
Comment in 4e07f5b:

I think the changes in the canonicalize_all_urls branch of my fork would remove the need for this, as it makes all urls into fully-qualified absolute urls before requesting them.

brynary commented on brynary/webrat Wed Feb 25 15:17:17 -0800 2009
Comment in b7e0d6f:

Hey guys,

Sorry I wasn’t able to get the outstanding patches merged in for this release. It was very directly motivated by needing the have_selector changes released to match what we’re talking about in the latest RSpec Book beta release. There will be another release soon with the things you guys mentioned.

Cheers,

-Bryan

adkron commented on brynary/webrat Tue Feb 24 13:22:10 -0800 2009
Comment in b7e0d6f:

So sad that the options passed to selenium isn’t going in.

sr commented on brynary/webrat Tue Feb 24 09:36:23 -0800 2009
Comment in b7e0d6f:

Too bad you didn’t include the Sinatra fixes. ttyl later tonight on rack-test :)

adkron commented on brynary/webrat Mon Jan 26 08:06:20 -0800 2009
Comment in 3d5dd13:

Ahh. I was looking and assert_have_tag doesn’t conflict with Rails. The Rails assert is assert_tag. Is there any other reason why the original commit was rolled back?

brynary commented on brynary/webrat Mon Jan 26 06:46:22 -0800 2009
Comment in 3d5dd13:

Amos — We had to roll back the inclusion of have_tag by default into non-Merb environments, which caused this test to start failing. Mike disabled the tests as a quick fix to get “rake precommit” back to a passing state.

Having this test is fine, but we’ll need to update the integration app to manually include the have_tag matcher.

adkron commented on brynary/webrat Sun Jan 25 17:35:24 -0800 2009
Comment in 3d5dd13:

Why turn off the test. This is currently a working feature. Turning off the test until you decide if we want the feature doesn’t help. I don’t get it.

adkron commented on brynary/webrat Tue Jan 20 18:38:01 -0800 2009
Comment in 4e3cf59:

This will not work in selenium mode. At least not yet. =8-)

tmak commented on brynary/webrat Sun Jan 18 02:17:04 -0800 2009
Comment in 7a7cb3f:

And what if you want to run your tests in selenium mode (or another new mode)? Such features will make it harder to maintain the code base. I thought a main goal is to keep it possible to run the webrat tests in multiple modes? I think the public webrat api should be web framework agnostic.

BTW: I think for a rails guy it’s not a big deal to write “within(dom_id(user))” ;-)

WDYT?

gaffo commented on brynary/webrat Mon Jan 05 08:57:19 -0800 2009
Comment in 9825aee:

Hey, did you ever add a way to get a hold of the redirect location in a platform independent way?

joshknowles commented on brynary/webrat Tue Dec 30 06:42:32 -0800 2008
Comment in 7044eb5:

Yeah its a bit confusing as Webrat is a dependency of Merb so the support is built into the core somewhere.

foca commented on brynary/webrat Mon Dec 29 22:48:21 -0800 2008
Comment in 7044eb5:

Right. So I supposed it was this easy, but since I didn’t find a require “webrat” anywhere I was trying to figure where the magic was :)

lukemelia commented on brynary/webrat Mon Dec 22 15:21:14 -0800 2008
Comment in 7d63aa1:

No prob, I have this crazy idea of being able to make a little movie from a story, perhaps with the story text as subtitles…

bmabey commented on brynary/webrat Thu Dec 18 22:00:54 -0800 2008
Comment in 7d63aa1:

This is awesome, thanks for adding it! I was just wishing for something just like this today…

pd commented on brynary/webrat Wed Dec 10 08:10:12 -0800 2008
Comment on lib/webrat/core/session.rb in 9b15035:

Is the reload/reloads deprecation intentionally the opposite of the rest?

gma commented on brynary/webrat Tue Dec 09 07:21:35 -0800 2008
Comment on lib/webrat/core/form.rb L105 in 9a344fd:

I patched MechanizeSession so that it ensures that the URL is absolute. Here’s the commit.