Tagged Questions
The scrubyt tag has no wiki summary.
1
vote
0answers
132 views
scrubyt: multiple form in one page
How do I target one form from another when there are 2 forms in the same page like this page?
http://screener.finance.yahoo.com/stocks.html
Here's my sample code:
require 'rubygems'
require ...
1
vote
4answers
939 views
Transitioning from Scrubyt to Nokogiri- Write to XML or Hash?
I'm trying to transition this bit of code from scrubyt to nokogiri, and am stuck trying to write my results to either a hash or xml. In scrubyt it looks like the following:
require 'rubygems'
...
1
vote
4answers
322 views
Scrubyt gives 404 Error when clicking link using _details method
This might be a similar problem to my earlier two questions - see here and here but I'm trying to use the _detail command to automatically click the link so I can scrape the details page for each ...
0
votes
1answer
232 views
uninitialized constant Scrubyt::Navigation::Mechanize::WWW (NameError)
I am using the Scrubyt gem, and when I use it, I get this error:
/home/bitnami/.rvm/gems/ruby-1.8.7-p352/gems/scrubyt-0.4.06/lib/scrubyt/core/navigation/agents/mechanize.rb:17:in `included': ...
0
votes
1answer
482 views
Scrubyt wont work with windows
I am running Windows XP. I just installed the latest version of Ruby(1.9) - Hpricot, Mechanize and Scrubyt installed without any issues. I have tried to work with the simplest examples I could find to ...
0
votes
1answer
108 views
How to use Scrubty properly to grab URL from the XML outputted content
I am by no means a master with Ruby and am quite new to Scrubyt. I was just trying out some examples found on there wiki page. The example i was working on was getting the search results returned by ...
0
votes
1answer
47 views
scrubyt - > Check for tag existence?
I'm trying to use scrubyt to scrape a page and have everything working except for a decent way of advancing to the next page of the results. The next_page approach isn't working due to the url being ...
0
votes
1answer
69 views
How to export scrubyt extractor?
I've written a scrubyt extractor based on the 'learning' technique - that is, specifying the current text on the page and getting it to work out the XPath expressions itself. However, I now want to ...
0
votes
1answer
43 views
Scrubyt: Using big5 strings in query_field for fill_textfield
Does anyone know of a way to get fill_textfield to accept a big5-encoded string in the query_field? I keep getting an "unterminated string meets end of file" error with this:
require 'rubygems'
...
0
votes
3answers
838 views
Scraping hidden HTML (when visible = false) using Hpricot (Ruby on Rails)
I've come across an issue which unfortunately I can't seem to surpass, I'm also just a newborn to Ruby on rails unfortunately hence the number of questions
I am attempting to scrape a webpage such as ...
0
votes
1answer
146 views
Any scrubyt command that clicks a link returns a 403 Forbidden Error
I'm trying to use Scrubyt to navigate around a website, but whenever I use it to click any links it gives me 403 Forbidden errors. The website doesn't require logins or anything so I don't understand ...
0
votes
1answer
729 views
How to get 'Next Page' link with Scrubyt
I'm trying to use Scrubyt to get the details from this page http://www.nuffieldtheatre.co.uk/cn/events/event_listings.php?section=events. I've managed to get the titles and detail URLs from the list, ...