0
votes
0answers
14 views

Grabbing the first child of a <tr> tag?

Currently I'm following Ray Wenderlich's tutorial dealing with parsing html on ios. Everything is explained perfectly and according to this tree: they extract the title and url tag for each ...
1
vote
1answer
46 views

Simple HTML DOM Parser - Get all plaintex rather than text of certain element

I tried all the solutions posted on this question. Although it is similar to my question, it's solutions aren't working for me. I am trying to get the plain text that is outside of <b> and it ...
0
votes
1answer
62 views

Using HTMLUnit to get javascript elements

I'm trying to use HTMLUnit to get the javascript elements on a webpage (https://www.coursera.org/courses), and it is only loading the html data. How do I get it to display the information shown in the ...
2
votes
1answer
123 views

Speeding up CsQuery selectors by using html substring

I want to parse some complex/heavy HTML pages. I recently read about CsQuery and checked the performance comparation of CsQuery Vs Html Agility Pack and Fizzler . According to these tests, CsQuery ...
0
votes
1answer
90 views

I need to grab data from html of a remote url

I need a script that accepts this ul: <ul id="activitylist"> <li class="activitybit forum_thread"> <div class="avatar"> <img alt="secret team's Avatar" ...
0
votes
1answer
79 views

web scrape using preg_match_all

I'm trying to get the contact information from this site http://www.internic.net/registrars/registrar-967.html using PHP.. I was able to get the e-email ad by using the href links by doing this: ...
1
vote
1answer
213 views

Using ghost.py to change the value of a select dropdown and retrieve values after update

Default action for the webpage is to list results by relevance but has a dropdown box that can be used to change the results table sort order. I would like to use Ghost.py to mimic the action of ...
0
votes
1answer
58 views

Given a URL Find The Contact Link

I have a url and I have to find a contact link within the url. So what I did was use the simple_html_dom.php to loop through all the a tags and if it contains the word "contact" or "advertis" then ...
4
votes
2answers
470 views

How to extract meaningful and useful content from web pages? [closed]

I would like to parse a webpage and extract meaningful content from it. By meaningful, I mean the content (text only) that the user wants to see in that particular page (data excluding ads, banners, ...
2
votes
1answer
193 views

Iterate through elements in html tree using BeautifulSoup, and produce an output that maintains the relative position of each element? in Python

I have this code that does what I need it to do using Jsoup in Java Elements htmlTree = doc.body().select("*"); Elements menuElements = new Elements(); for(Element element : htmlTree) { ...
4
votes
5answers
531 views

Extracting an information from web page by machine learning

I would like to extract a specific type of information from web pages in Python. Let's say postal address. It has thousands of forms, but still, it is somehow recognizable. As there is a large number ...
0
votes
1answer
229 views

Scrapy - How to scrape daily for new pages

Im evaluating if scrapy is right for me. All I want is to scrape several sports news sites daily for the latest headlines and extract the title, date and article body. I dont care about following ...
2
votes
1answer
51 views

Scrape Offer returns no results

I have researched this issue in the database, googled the questions, and found two different errors. I have determined that the 503 errors are Amazon blocking me but I get a different error that is ...
0
votes
1answer
63 views

Easy way to get hyperlink info from rendered web page

I'd like do this programmatically: Given a page URL, I need to get all links on the page. What's important is that at least 3 pieces of link info must be obtained: anchor text, href attribute value, ...
1
vote
2answers
134 views

Parsing a CSV HTML stream in R

I am trying to parse an html page that is displayed in csv format. I would like to read this table on the fly of the page directly into R (http://www.nwrfc.noaa.gov/esp/esp2csv.cgi?id=slkw1) and then ...
1
vote
3answers
408 views

Parser or web crawler

I want to extract data from ehow.com regarding different topics to store in my database. Problem is there are multiple web pages I have to sift through to get the info from this website. In order to ...
0
votes
2answers
224 views

is it possible to click download button automatically in a web page using c# code

I have a requirement where i have to download file automatically from a web page. There is a button for download and its redirecting to url. Can i click that button dynamically using code. The url is ...
0
votes
1answer
245 views

R readHTMLTable() function error

I'm running into a problem when trying to use the readHTMLTable function in the R package XML. When running library(XML) baseurl <- "http://www.pro-football-reference.com/teams/" team <- ...
1
vote
1answer
364 views

html dom parser php array

The code above works but return only first element of the array, probably because I set 0 in $item. If I delete 0 I get "Array" message. How to get the complete loop and put it in my table output? ...
0
votes
3answers
210 views

How to extract the extra content loaded in a web page

How to extract the extra content loaded in a web page, which will not be visible in view page source. The extra content is being loaded using ajax. This data can be seen under NET tab using firebug. ...
0
votes
2answers
444 views

How to extract dynamic ajax content from a web page

My requirement is to extract the required content from a web page. The page has a section which is being populated using ajax. When i view in page source it is not showing the content loaded using ...
0
votes
3answers
294 views

Java Html parser to extract specific data?

I have a html file like the following ... <span itemprop="A">234</span> ... <span itemprop="B">690</span> ... In this i want to extract values as A and B. Can u suggest any ...
0
votes
2answers
244 views

How to get href content

I'm trying to extract link from href.<a class="p_l" href="" id="0" target="_blank"> This is what is visible in page view source but when i inspect using firebug, href will contain ...
1
vote
1answer
170 views

Javascript source code from a web page

Is it possible to get the source code of javascript used in a web page. I want the source of javascript with actual variables but not with values replacing the variables. function fun() { var x = ...
0
votes
0answers
58 views

How to parse FPS from ie testdrive website? (HTML5 Canvas elements)

I am trying to create an automated script to extract the FPS field from the Internet Explorer testdrive pages (http://ie.microsoft.com/testdrive/Views/SiteMap/) as they are being run. Specifically, ...
1
vote
2answers
282 views

How to login to an https website using c# and keep session?

I'm trying to use C# to login to a website, and then go to other pages of the website(that require being logged in) and get the HTML so I can parse with htmlagilitypack. I can get the html of a ...
0
votes
3answers
316 views

Scraping data using HTMLAgilityPack

In HTMLAgailityPack, how to get the data from the website which is not coming in the innerhtml method of it. For example, if in the link below: ...
-5
votes
2answers
174 views

Extracting images from a webpage under a specific tag

I want to know how to extract all images in a webpage under a specific tag. For example if it is under: <div class="img-style"> <img src="http://blah.../x.jpg"> I want to extract ...
0
votes
1answer
151 views

What is the fastest way to download source code from a web page in python with proxy?

I'm already using urllib2 to get the pages using proxy, but it's taking way too long, and I know that using proxy takes longer, but still is taking too long comparing if I test the proxy in firefox or ...
0
votes
2answers
247 views

Formatting scraped data from a Website (BeautifulSoup)

I'm creating a scraper using BeautifulSoup and Requests that scrapes the pages of a site to get match schedule (and result, if available). This is what I have so far: def getMatches(self): ...
2
votes
1answer
558 views

Using HTMLParser in Python 3.2

My first post here. I'm grateful for all I've found so far, but have become utterly stumped with failed Google-Fu on a project of mine. In Python, I have been using HTMLParser to scrapping data from ...
1
vote
1answer
100 views

Unable to find exact source code of my blog

I am into a project where I deal with parsing HTML of web pages. So, I took my blog (Bloggers Blog - Dynamic Template) and tried to read the content of it. Unfortunately I failed to look at "actual" ...
0
votes
1answer
132 views

Error using XML package in R

I am gathering data about different universities and I have a question about the follow error after executing the following code. The problem is when using htmlParse() Code: url1 <- ...
1
vote
1answer
371 views

load page into the webBrowser and grab HTML

I need to load the page into the webBrowser, wait for this page to load (including the ajax) and then grab the HTML of that page. I tried this, but it seems to be not working as intended. Any help ...
0
votes
1answer
213 views

htmlagilitypack scrape all rows

I need to scrape all table rows with class containing "row", within an iframe contained in a web page. I currently have this code: "//tr[contains(@class, 'row']" but I get an error ...
0
votes
1answer
397 views

How to extract news content from a web page using Boilerpipe?

I need to extract main news content from a web page.I searched on internet and found an api named Boilerpipe freely available for that purpose http://boilerpipe-web.appspot.com/ But I'm not abled to ...
0
votes
3answers
1k views

Web scraping in PHP

I'm looking for a way to make a small preview of another page from a URL given by the user in PHP. I'd like to retrieve only the title of the page, an image (like the logo of the website) and a bit ...
0
votes
0answers
211 views

get_element_by_id not working in lxml

I am using lxml to parse an HTML document. I am doing as doc = parse(page).getroot() doc.get_element_by_id('notifications') page has my HTML page and, I have checked the source there does exist an ...
0
votes
2answers
205 views

The Web Browser show the correct values but when I use Jsoup the HTML doesn't have the values

I'm trying to get some values from a site but these values only appears when I use a Browser, like Mozilla. When I use the Jsoup I can get the HTML from the site but without values, only with the ...
2
votes
1answer
404 views

How to get all links in a webpage using perl?

I want to get all links (<a href='http://.*') from a web page using perl, which module should I use? Or just use regex myself?
0
votes
1answer
285 views

C# HTML Agility Pack with IF statement

I have this code that I need to run an if statement to set the value of a variable. The problem is when the first condition is null it fails. Can anyone tell me what I am doing wrong? The IF ...
1
vote
2answers
2k views

How to make XPath select multiple table elements with identical id attributes?

I'm currently trying to extract information from a badly formatted web page. Specifically, the page has used the same id attribute for multiple table elements. The markup is equivalent to something ...
4
votes
3answers
951 views

How do I scrape only the <body> tag off of a website

I'm working on a webcrawler. At the moment i scrape the whole content and then using regular expression i remove <meta>, <script>, <style> and other tags and get the content of the ...
0
votes
1answer
281 views

How get previousSibling and nextSibling

I have html: <hr> <p><font face="AvantGarde Bk BT" style="font-size: 9pt" color="#66FF33"> (08/04/2006) Parallel Worlds are one of the featured artists in the <a ...
-1
votes
2answers
3k views

how to parse contents from a html file using CURL? [closed]

I want to parse an XHTML content using CURL. How to scrap transaction number, weight, height, Width between <table> tags. How to scrap only the contents from this HTML document and get it as ...
2
votes
2answers
5k views

web scraping java beginner

I am new to Java, I would like to become really good in web scraping and parsing data Are there any sites related to web scraping that would help me understand the how the APIs like htmcleaner, ...
1
vote
2answers
1k views

Parsing HTML tables using the XML / RCurl R packages, without using the readHTMLTable function

I am trying to scrape/extract data from the single html table on: http://www.theplantlist.org/tpl/record/kew-419248 and a number of very similar pages. I initially tried using the following function ...
0
votes
2answers
2k views

PHP Simple DOM Parser to Scrape From Multiple URLs

Is it possible to use a foreach loop to scrape multiple URL's from an array? I've been trying but for some reason it will only pull from the first URL in the array and the show the results. ...
2
votes
3answers
596 views

Are there any alternatives to phpQuery with WebBrowser plugin?

I am looging for any (PHP) alternatives to phpQuery which also mimic behaviors of web browser (like phpQuery's WebBrowser plugin). I like phpQuery, but it was last updated in May 2009. Any suggests?
1
vote
3answers
2k views

Web Scraping (in R?)

I want to get the names of the companies in the middle column of this page (written in bold in blue), as well as the location indicator of the person who is registering the complaint (e.g. "India, ...

1 2