Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a program that scrapes value from this page: https://web.apps.markit.com/WMXAXLP?YYY2220_zJkhPN/sWPxwhzYw8K4DcqW07HfIQykbYMaXf8fTzWT6WKnuivTcM0W584u1QRwj

My current code is:

doc = Nokogiri::HTML(open(source_url))

puts doc.css('span.indexDate').text
date = doc.css('span.indexDate').text
date = Date.parse(date)
puts date
values = doc.css('table#CdsIndexTable td.col2 span')
puts values

This scrapes the date and values of 2nd column from the CDS Indexes table correctly which is fine. Now, I want to scrape the similar values from the Bond Indexes table where I am facing the problem. I can see a javascript function changes it without loading the page and without changing the url of the page. The difference between these two tables that I can see now is there IDs are different which is exactly that it should be. But, unfortunately when I try with :

values = doc.css('table#BondIndexTable')
puts values

I get nothing from Bond Indexes table. But I get values from Cds Indexes table if I use :

values = doc.css('table#CdsIndexTable')
puts values

So, my question is how can I get the values from both tables? Any kind of help is well appreciated. Thanks in advance !

share|improve this question
Does Nokogiri execute javascript? If it does, and those "javascript functions" use ajax maybe cross-domain policy is blocking them from completing? Have you tried something like PhantomJS? – Chad Nov 13 '12 at 16:15
I think nokogiri does not run javascript. I did not use PhantomJS. PhantomJS should solve the problem you think? thanks. – Keen Learner Nov 13 '12 at 16:25
2  
Nokogiri does NOT run JavaScript. – the Tin Man Nov 13 '12 at 16:56

2 Answers

up vote 2 down vote accepted

If you don't want to use PhantomJS you can also use the network sniffer on Firefox or Chrome development tools, and you will see that the HTML table data is returned with a javascript POST request to the server.

Then instead of opening the original page URL with Nokogiri, you'd instead run this POST from your Ruby script and parse and interpret that data instead. It looks like it's just JSON data with HTML embedded into it. You could extract the HTML and feed that to Nokogiri.

Requires a bit of extra detective work, but I've used this method many times with JS web pages and scraping. It works OK for most simple tasks, but it requires a bit of digging into the inner workings of the page and network traffic.

EDIT

Example of the JSON data from the Javascript POST request:

Bonds:
https://web.apps.markit.com/AppsApi/GetIndexData?indexOrBond=bond&ClientCode=WSJ

CDS:
https://web.apps.markit.com/AppsApi/GetIndexData?indexOrBond=cds&ClientCode=WSJ

EDIT 2

Here's the quick and dirty solution just so you get an idea. This will grab the cookie from the initial page and use it in the request to get the JSON data, then parse the JSON data and feed the extracted HTML to Nokogiri:

require 'rubygems'
require 'nokogiri'
require 'open-uri'
require 'json'

# Open the initial page to grab the cookie from it
p1 = open('https://web.apps.markit.com/WMXAXLP?YYY2220_zJkhPN/sWPxwhzYw8K4DcqW07HfIQykbYMaXf8fTzWT6WKnuivTcM0W584u1QRwj')

# Save the cookie
cookie = p1.meta['set-cookie'].split('; ',2)[0]

# Open the JSON data page using our cookie we just obtained
p2 = open('https://web.apps.markit.com/AppsApi/GetIndexData?indexOrBond=bond&ClientCode=WSJ',
          'Cookie' => cookie)

# Get the raw JSON
json = p2.read

# Parse it
data = JSON.parse(json)

# Feed the html portion to Nokogiri
doc = Nokogiri.parse(data['html'])

# Extract the values
values = doc.css('td.col2 span')
puts values.map(&:text).inspect

=> ["0.02%", "0.02%", "n.a.", "-0.03%", "0.02%", "0.04%", 
    "0.01%", "0.02%", "0.08%", "-0.01%", "0.03%", "0.01%", "0.05%", "0.04%"]
share|improve this answer
can't I use these links directly as an argument of open() method? I tried: doc=Nokogiri::HTML(open('web.apps.markit.com/AppsApi/…)) but got error :S another question is: how did you get these links? could you please tell me? – Keen Learner Nov 13 '12 at 17:26
1  
@K.M.RakibulIslam Ok. Looks like it's not quite so simple. You probably need the cookies from the original web page embedded in the request headers. That's a bit beyond the scope of a simple answer, so maybe you want to try PhantomJS instead. I got the links using the Network panel in Chrome Developer Tools: developers.google.com/chrome-developer-tools/docs/network . Just press the links on the live web page and watch what network calls are being made by the javascript using the developer tools. – Casper Nov 13 '12 at 17:34
@K.M.RakibulIslam See my edit. – Casper Nov 13 '12 at 18:03
thanks a lot for your great effort and help Casper :) – Keen Learner Nov 13 '12 at 18:19
The mechanize gem can simplify this, because it handles the cookie for you, and also gives you access to a parsed Nokogiri doc. – Mark Thomas Nov 14 '12 at 2:05

PhantomJS is a headless browser with a JavaScript API. Since you need to run the scripts on the page you are scraping, a browser will do that for you; and PhantomJS will allow you to manipulate and scrape the page after the script execution.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.