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 !