0
votes
2answers
70 views

grab elements with containing text nokogiri xpath

Still learning how to use nokogiri and so far can grab by css elements.There is a page I want to scrape http://www.bbc.co.uk/sport/football/results, i want to get all the results for the barclays ...
0
votes
1answer
183 views

Scraping Table with Nokogiri and need JSON output

So, I have a table with multiple rows and columns. <table> <tr> <th>Employee Name</th> <th>Reg Hours</th> <th>OT Hours</th> </tr> ...
0
votes
1answer
32 views

Would like help extracting from model data nested inside javascript text filtered with Mechanize

Using the following: LowEast = agent.get('https://rs.alarmnet.com/TotalConnectComfort/Device/Control/12345') puts LowEast.parser.xpath("//script[@type='text/javascript']") Returns what follows, ...
0
votes
2answers
145 views

Check if Nokogiri HTML document is usable

I want to check if the URL that the user inputs is in fact a valid page. I tried: if Nokogiri::HTML(open("http://example.com")) #DO REQUIRED TASK end But that immediately throws an error upon ...
1
vote
1answer
244 views

Screen scraping in clojure

I googled, but I can't find a satisfactory answer. This SO question is related but kinda old as well as the exact opposite of what I am looking for: a way to do screen-scraping using XPath, not CSS ...
2
votes
2answers
222 views

Selecting Paragraphs in Groups with xPath in Ruby

I'm currently working on a little web scraping project with Ruby and xPath. Unfortunatly the website is very bad structured, which leads me to a litte problem: <h3>Relevant Headline</h3> ...
1
vote
1answer
101 views

Read XML node.text as HTML in nokogiri

I'm parsing a Reddit RSS feed with Nokogiri for a certain subreddit. I'm trying to capture the external URL of the post if it goes to a certain domain. Unfortunately, even if the post created by the ...
0
votes
1answer
62 views

Nokogiri - slicing results

I'm building a scraper to pull stories from news sites. Here's an example from the BBC news site: require 'nokogiri' require 'open-uri' doc = Nokogiri::HTML(open('http://www.bbc.co.uk/news/')) ...
0
votes
1answer
173 views

Nokogiri: how to find a div by id and see what text it contains?

I just started using Nokogiri this morning and I'm wondering how to perform a simple task: I just need to search a webpage for a div like this: <div id="verify" style="display:none"> ...
2
votes
2answers
500 views

How do I scrape data from a page that loads specific data after the main page load?

I have been using Ruby and Nokogiri to pull data from a URL similar to this one from the hollister website: ...
1
vote
1answer
209 views

Handling Failed Connection on Proxy for Nokogiri

I have the following line of code which I use to scrape the html for a site. As you can see I pass in a proxy into this doc = Nokogiri::HTML(open(Scrape.scrape_url + page.to_s, :proxy => ...
3
votes
3answers
236 views

How do I scrape something after JS has changed the DOM?

I'm using Mechanize, although I'm open to Nokogiri if Mechanize can't do it. I'd like to scrape the page after all the scripts have loaded as opposed to beforehand. How might I do this?
0
votes
1answer
120 views

Mechanize for bing and yahoo search engine

How can we implement Mechanize for bing and yahoo search engine? For google implementation seems to be far simple @agent = Mechanize.new page = @agent.get('http://www.google.com') google_form = ...
2
votes
2answers
305 views

Screen scrape HTML head content?

I am comfortable scraping HTML content by using the CSS elements as a method of identifying the section of content that I want, but I need to scrape the content of the section of a webpage: ...
1
vote
1answer
983 views

Logging into a website using Mechanize and Nokogiri?

I am having some difficulty with one of our service providers login forms. The other sites are working fine but for some reason I can't get past their login form. The website login for is like this: ...
3
votes
2answers
629 views

I need to scrape data from a facebook game - using ruby

Revised (clarified question) I've spent a few days already trying to figure out how to scrape specific information from a facebook game; however, I've run into brick wall after brick wall. As best as ...
0
votes
1answer
715 views

How do I parse a table into its meaningful chunks?

I need to extract a table of data on a collection of pages. I can already traverse the pages just fine. How do I extract the table's data? I'm using Ruby and Nokogiri, but I would assume that ...
1
vote
1answer
235 views

Parsing: Can I pick up the URL of embedded CSS Background in Nokogiri?

The HTML I am parsing contains images with inline CSS in a table, can I use Nokogiri to determine the URL component is, here is a snippet of code I'd like to parse: tldr: i'ld like to get the .png in ...
3
votes
2answers
778 views

Image scraping in Ruby

How do I scrap a image present on particular URL using Nokogiri. If there are better options than Nokogiri please suggest. The css image tag is .profilePic img
2
votes
3answers
720 views

Screen Scraping in Rails 3

What are the screen scraping options in Rails 3 - gem/library? I have used Nokogiri in the past but just wanted to know if there are better options in Rails 3.
0
votes
0answers
177 views

How to scrape and display contents on page load and refresh this data on an interval?

I need to scrape a section of html out of a page and then render this on another page when it loads. So for example, when a user visits page X it would use Nokogiri to pull information from page Y ...
0
votes
1answer
69 views

Why do I get a blank record for every table row?

I have the following code, thanks to another SO question/answer: page = agent.page.search("table tbody tr").each do |row| time = row.css("td:nth-child(1)").text.strip source = ...
3
votes
4answers
1k views

Remove all JavaScript from an HTML page

I've tried using the Sanitize gem to clean a string which contains the HTML of a website. It only removed the <script> tags, not the JavaScript inside the script tags. What can I use to remove ...
0
votes
1answer
1k views

Why do I get “wrong status line” errors from Nokogiri?

My Ruby/Nokogiri script is: require 'rubygems' require 'nokogiri' require 'open-uri' f = File.new("enterret" + ".txt", 'w') 1.upto(100) do |page| urltext = "http://xxxxxxx.com/" + "page/" ...
2
votes
0answers
135 views

Is it possible to create a HTML push parser with Nokogiri?

I'm trying to parse large HTML documents and extract information from them, so that I can create JSON documents with just the data that I want. I'm currently using a Nokogiri::HTML::SAX::Parser to ...
1
vote
1answer
255 views

Finding links on page matching HREF pattern

I am trying to interact with a website full of images and want to interact with it by clicking on each image. Each image has a relative url (eg: /image/1000/, image/1023/, etc). The number I assume is ...
3
votes
3answers
2k views

Save all image files from a website

I'm creating a small app for myself where I run a Ruby script and save all of the images off of my blog. I can't figure out how to save the image files after I've identified them. Any help would be ...
-1
votes
1answer
608 views

Screen scraping through nokogiri or hpricot

I'm trying to get actual value of given xpath. I am having the following code in sample.rb file require 'rubygems' require 'nokogiri' require 'open-uri' doc = ...
2
votes
1answer
703 views

Screen scraping Akamai's control panel using Mechanize for Ruby - Cookies Issue

I am attempting to screen scrape some data from Akamai's control panel, but I am having trouble while logging in to the page via mechanize for Ruby. require 'rubygems' require 'mechanize' agent = ...
5
votes
2answers
714 views

Using Nokogiri to Split Content on BR tags

I have a snippet of code im trying to parse with nokogiri that looks like this: <td class="j"> <a title="title text1" href="http://link1.com">Link 1</a> (info1), Blah ...
1
vote
2answers
541 views

Writing a Simple Ruby Script w/ Open URI

I'm building a simple news aggregator with Ruby. I am completely new to the language, and I just found out how to use the open uri function. Now, my problem is how to parse the html page. Is there a ...
1
vote
2answers
375 views

Trouble with parsing source html with Nokogiri

I'm trying to use nokogiri to select a DOM element but it seems to be returning an empty array. I run this code: require "open-uri" require "nokogiri" doc = ...
0
votes
2answers
296 views

How to insert a string to a text field using mechanize in ruby?

I know is a very simple question but I've been stuck for an hour and I just can't understand how this works. I need to scrape some stuff from my school's library so I need to insert 'CE' to a text ...
2
votes
2answers
348 views

Parsing Malformed HTML with Ruby Mechanize

I am fairly new to using mechanize, and even Ruby in general. I am using it to navigate a site which has badly malformed HTML. In particular, I have a page which has checkboxes outside of a form ...
0
votes
2answers
911 views

ruby nokogiri restclient to scrape javascript variable

I'm using restclient and nokogiri to parse some html which works great, but there is one piece of information stored in a js (jquery) variable which I need to return and I'm not sure how to parse it. ...
0
votes
2answers
294 views

How can I read a website as a different IP address?

I am using Nokogiri to screen scrape a few websites. My website is hosted on US servers, and so when it fetches the website, the website responses as if the user was a US user. I need the website to ...
2
votes
3answers
621 views

how to run multiple nokogiri screen scrape threads at once

I have a website that requires using Nokogiri on many different websites to extract data. This process is ran as a background job using the delayed_job gem. However it takes around 3-4 seconds per ...
4
votes
3answers
1k views

Cannot sign in using form with Mechanize

I am trying to submit a form with mechanize. But nothing happens on submit. I just get the login page again. The form: http://affilate.mikkelsenmedia.dk/partnersystem/mylogins.php require ...
1
vote
1answer
988 views

How to get javascript value using Nokogiri?

I need to pull out a particular line that is in some inline javascript on a page using nokogiri. How would I go about doing this?
2
votes
2answers
2k views

Help needed with screen scraping using anemone and nokogiri

I have a starting page of http://www.example.com/startpage which has 1220 listings broken up by pagination in the standard way eg 20 results per page. I have code working that parses the first page ...
1
vote
1answer
233 views

How to fail gracefully and get notified if screen scraping fails in ruby on rails

I am working on a Rails 3 project that relies heavily on screen scraping to collect data mainly using Nokogiri. I'm aggregating essentially all the same data but I'm grabbing it from many difference ...
0
votes
2answers
319 views

Nokogiri find only inbound links

I have an html document located on http://somedomain.com/somedir/example.html The document contains of four links: http://otherdomain.com/other.html http://somedomain.com/other.html /only.html ...
2
votes
1answer
1k views

Following a link using Nokogiri for scraping

Is there a method to follow a link using Nokogiri for scraping? I know I can extract the href and open it, but I thought I saw a method to do this using hpricot and was wondering if there was ...
8
votes
6answers
8k views

Nokogiri, open-uri, and Unicode Characters

I'm using Nokogiri and open-uri to grab the contents of the title tag on a webpage, but am having trouble with accented characters. What's the best way to deal with these? Here's what I'm doing: ...
3
votes
1answer
1k views

Mechanize not recognizing anchor tags via CSS selector methods

(Hope this isn't a breach of etiquette: I posted this on RailsForum, but I haven't been getting much response from there recently.) Has anyone else had problems with Mechanize not recognizing anchor ...
1
vote
2answers
646 views

How to detect mailto links with Hpricot/Nokogiri

I want to match links like <a href="mailto:my@email.com">foo</a>, but this doesn't work only works in Nokogiri: doc/'a[href ^="mailto:"]' What's the right way of doing that? How do I do ...