Newbie Metchanize Question

Hello.

I have a page that I get in mechanize.

I can view all of the links on the page, but I actually only want to get
some of the links on the page.

How can I grab only what I need?

The source code looks like this:

link

I want to get the url for each of the details classes or get only the
url’s that contain “unique_link” in the them.

Right now I’m using this code to get all of the results.

search_results.links.each.do |link|
puts link.text
end

THANKS!

Sorry for the misspelling of the subject in the previous post!

Figured it out.

page.search(“div.details”).search(“a[@href*=‘unique_id’]”)

Becca G. wrote:

Figured it out.

page.search(“div.details”).search(“a[@href*=‘unique_id’]”)

After re-reading the documentation, I see that I should be able to
simply do something like this --> page.links.href(’/unique_id’) but I
get nothing. No results, nada. Am I doing this wrong?

The previous code works, but I think that I should do this more
efficiently.

On Fri, Oct 31, 2008 at 09:38:00AM +0900, Becca G. wrote:

Becca G. wrote:

Figured it out.

page.search(“div.details”).search(“a[@href*=‘unique_id’]”)

After re-reading the documentation, I see that I should be able to
simply do something like this --> page.links.href(’/unique_id’) but I
get nothing. No results, nada. Am I doing this wrong?

You can do:

page.links_with(:href => /unique_id/)

Which will search links that have href’s which match /unique_id/

Hope that helps.