Tagged Questions
0
votes
0answers
47 views
How to parse a table from a html page and is it possible to parse multiple html's at once in php [duplicate]
I am trying to parse a tabular structured data from a html page..
It has the following structure
<table>
<tr>
<td><a href="url">name</a></td>
...
1
vote
1answer
57 views
HtmlAgilityPack: Given a html file, how can I get nodes based on given class attributes
So basically I want to filter out the HTML and preserve the hierarchy of the nodes. For example, I have this and I only want the HTML that has the class "b.1.1" in its hierarchy:
<html>
...
1
vote
1answer
48 views
Highlight nodes covered by XPath
I want to highlight nodes covered by a given XPath in an HTML page source.
I looked to in HtmlUnit, could not find any thing in API.
At present, I am thinking of doing it following way:
Get XPath ...
0
votes
2answers
73 views
Parsing a HTML with Hpple
I'm using Hpple to pass a HTML file. The HTML file is very similar to the following.
<div class="entry">
<p>some text here
<a>Inside a</a>
another ...
0
votes
3answers
60 views
XPATH exclude more than one element/tag
I am having issues trying to extract text between two div tags in an XML.
Imagine I have the following XML:
<div class="default_style_wrap" >
<!-- Body starts -->
<!-- ...
0
votes
0answers
110 views
Xpath/HtmlAgilityPack: Getting the specific attributes from href tag
I'm using the HtmlAgilityPack to parse href tags in an html file. The href tags look like this:
<h3 class="product-name"><a href="http://www.somewebsite.com/blahblah" title="Click Here to ...
2
votes
2answers
283 views
How to convert Xpath to CSS
My xpath is: /html/body/div/table/tbody/tr[2]/td[4]
I need to get an CSS to use it in jsoup selector.
I found a comparison between xpath and css: here, and it's said in their example (Second ...
0
votes
1answer
53 views
XPath extract text inside tag
HTML structure looks like this:
<div class="Parent">
<div id="A">more tags and text</div>
<div id="B">more tags and text</div>
more tags
<p> and text ...
1
vote
0answers
85 views
Loop out values from a div tag with the xpath and html agility
I'm trying to scrape a website. a comparison site and in such exists a div tags class several times so I would loop out information from each div tag to get something like this in my "div" list item:
...
1
vote
1answer
78 views
html AgilityPack XPath C# .net 4
I have to define xpath to access second span text to parse the following name-value html structure (see below) loaded to AgilityPack document. I would to do the folowing query using xpath and C#:
...
0
votes
2answers
119 views
PHP DomDocument parse html
I have the following HTML markup
<div contenteditable="true" class="text"></div>
<div contenteditable="true" class="text"></div>
<div style="display: block;" ...
1
vote
1answer
187 views
Preserving <br> tags when parsing HTML text content
i have a little issue.
I want to parse a simple Html Document in PHP.
Here is the simple Html :
<html>
<body>
<table>
<tr>
...
2
votes
2answers
114 views
Perl's HTML::Element - dumping just the descendants as HTML
I'm having trouble trying to output the contents of a matched node that I'm parsing:
<div class="description">some text <br/>more text<br/></div>
I'm using ...
0
votes
1answer
313 views
get text content of an html element using XPath?
See this html
<div>
<p>
<span class="abc">Monitor</span> <b>$300</b>
</p>
<a href="/add">Add to cart</a>
</div>
<div>
...
0
votes
1answer
51 views
Finding a Same-Level Predecessor in XML using XPath
I have an XML Document I am attempting to get some data from. I have a known quantity, and on the same level and unknown quantity. So the format looks like this:
<header>Unknown ...
0
votes
0answers
77 views
Using htmlTreeParse from a proxy weblink
I need to connect to a website through my university library. The procedure is to login to my library, then find this specific link in the library site.
For example the url looks like this (as an ...
-2
votes
1answer
163 views
PHP regex to match all img tags except for certain src [closed]
I'm very new to PHP and did a slight modification to a certain file in a CMS written in PHP. I modified a function that took the first <img> tag in a page source, to take a random tag from that ...
0
votes
2answers
268 views
Hpple XPath query issue on IOS
I have the following HTML snippet:
<divv id="items">
<trr>
<td>
<p>Cars</p>
<a>Toyota</a>
...
0
votes
3answers
224 views
xpath looping to unknown number of nodes
I've a xpath that looks like this:
$path = '//*[@id="page-content"]/table/tbody/tr[3]/td['.$i.']/div/a';
where $i goes from 1 to X. I would normaly use:
for($i=1; $i<X;$i++){
$path = ...
0
votes
0answers
106 views
How to use DOM and XPATH in PHP to scrape content associated with css IDs/CLASSes in parsed tags
I'm in over my head, but that hasn't stopped me from getting the job done before. Seeking suggestions/examples to do this:
1) For any website URL provided:
2) obtain a list of all HTML tags, ...
1
vote
2answers
128 views
XPath/Scrapy crawling weirdly formatted pages
I've been playing around with scrapy and I see that knowledge of xpath is vital in order to leverage scrapy sucessfully. I have a webpage I'm trying to gather some information from where the tags are ...
2
votes
0answers
85 views
IE9 sees sibling HTML nodes as descendants
I'm investigating automated testing of an existing web application. I ran into the following problem while trying to select certain document nodes by XPath.
On a particular screen, the application ...
0
votes
1answer
180 views
Xpath select multiple classes
<div class="one">
<a class="two" href="Something..."><img src="http://..."/></a>
<p> stuff.... </p>
<p><img src="http://....." /></p>
...
1
vote
2answers
184 views
HTML parsing: How to find the image in the document, which is surrounded by most text?
I am writing a news scraper, which has to determine the main image (thumbnail), given an HTML document of a news article.
In other words, it's basically the same challenge: How does Facebook ...
4
votes
2answers
767 views
iOS: Html parsing - how to ignore tags like a, li, etc.. within <p>
I am currently using Hpple to parse HTML, like so:
TFHpple *htmlParser = [TFHpple hppleWithHTMLData:[currentString dataUsingEncoding:NSUTF8StringEncoding]];
NSString *paragraphsXpathQuery = ...
1
vote
2answers
261 views
Parsing HTML using JavaScript
I'm working a page that needs to fetch info from some other pages and then display parts of that information/data on the current page.
I have the HTML source code that I need to parse in a string. ...
1
vote
1answer
475 views
Python - Keeping some HTML tags with lxml Xpath feature
I am writing some HTML parsers using LXML Xpath feature. It seems to be working fine, but I have one main problem.
When parsing all the HTML <p> tags, there are words that use the tags ...
0
votes
1answer
895 views
Parse Html using lxml and xpath
I am trying to use lxml with python because after reading and doing google recommendation is to use lxml over other parsing packages. I have following dom structure and I manage write the correct ...
1
vote
3answers
992 views
Dealing with duplicate ids in selenium webdriver
I am trying to automate some tests using selenium webdriver. I am dealing with a third-party login provider (OAuth) who is using duplicate id's in their html. As a result I cannot "find" the input ...
0
votes
1answer
181 views
Xpath removing spaces in between text
I am using following XPath to pick some data from an html page. The value I am trying to pick has some spaces in between:
example=value1 value2 value3
My XPath expression is picking the ...
2
votes
2answers
1k views
Jsoup css selector code (xpath code included)
I am trying to parse below HTML using jsoup but not able to get the right syntax for it.
<div class="info"><strong>Line 1:</strong> some text 1<br>
<b>some text ...
0
votes
1answer
164 views
Retrieve bare html from XPath query in Java
My problem is that i need to retrieve original html from XPath expressions designed to get text parts of html.
For example if i got the current html :
<div class='text'>
<p ...
0
votes
2answers
450 views
Parsing HTML using Xpath with Javascript
In .NET there is a lovely library that allows me to easily parse an external html page using xpath queries (HTML Agility Project) - the problem is I have to do that client-side, so only javascript. Is ...
1
vote
1answer
202 views
XPath getting attributes of divs
I'm trying to learn xpath by writing a simple program that will list the fixtures of Premier League in footbal from the following page:
http://www.livefootball.com/football/england/premier-league/
...
0
votes
1answer
144 views
PHP XPath Table elements disapearing
I have just learned about XPath and I am wanting to read data from only certain columns in a table.
My current code looks like this:
<?php
$file_contents = file_get_contents('test.html');
...
0
votes
0answers
131 views
Why can't I get Chinese characters?
Why this can't get Chinese characters ??
I have used
NSStringEncoding enc = CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingGB_18030_2000);
NSString * retStr = [[NSString alloc] ...
1
vote
2answers
704 views
How to do a Python XPath case-insensitive search using lxml?
I am trying to match for country or Country using lower-case function in XPath. translate is kinda messy, so using lower-case and my Python version 2.6.6 has XPath 2.0 support I believe since ...
1
vote
0answers
126 views
Xpath not working as expected in PHP [closed]
Here is an example page which I'm trying to parse and get the phone number,
http://www.boats24.com/de/angebote/details_anfrage_telefon.php3?nr=161765
<?php
$url = ...
-1
votes
3answers
134 views
DOMDocument Parse html
I have one html page where there are number of <tr><td> elements like
<tr>
<td class="notextElementLabel width100">address:</td>
<td style="width: 100%" colspan="1" ...
1
vote
2answers
436 views
ASP.NET - Using HAP (HTML Agility Pack) to Add Class References During Render
Is it possible to use the HAP (HTML Agility Pack) to:
Grab a collection of nodes e.g. all <a> elements which are children of <li> elements
Iterate over the collection
Add CSS class ...
0
votes
2answers
403 views
ASP.NET - Parse / Query HTML Before Transmission and Insert CSS Class References
As a web developer I feel too much of my time is spent on CSS. I am trying to come up with a solution where I can write re-usable CSS i.e. classes and reference these classes in the HTML without ...
3
votes
2answers
4k views
How to get node value / innerHTML with xpath?
Well i have a xpath to dig to a class i want: //div[@class='myclass']. But it returns me the whole div (with the < div class='myclass'> also and i would like to return only the contents of this tag ...
0
votes
3answers
289 views
Tool to write XPATH automatically for web parser?
Currently I need to extract data from websites.
I tried using HTML Agility Pack, which uses XPATH to extract data.
Is there a tool available which automates writing XPATH so that even a naive user can ...
5
votes
1answer
516 views
Remotely Scrape Page and Get most Relevant title or Description for Images with XPath
What I'm looking at doing is essentially the same thing a Tweet button or Facebook Share / Like button does, and that is to scrape a page and the most relevant title for a piece of data. The best ...
3
votes
3answers
590 views
PHP Xpath: Get all href's that contain “letter”
Say I have an html file that I have loaded, I run this query:
$url = 'http://www.fangraphs.com/players.aspx';
$html = file_get_contents($url);
$myDom = new DOMDocument;
$myDom->formatOutput = ...
2
votes
1answer
503 views
How to fetch internal links from a webpage?
I use XPath to parse a HTML webpage for fetching all internal links. DOMXPath will return all links provided in href. How can I separate internal an external links?
I introduce a series of string ...
0
votes
0answers
158 views
Get tag attribute while a parsing an html file using PHP
I'm parsing a HTML file using DOMdocument.
I can easily get the node values, but how can I get their attributes?
So far I have something like this:
$columns = ...
1
vote
1answer
330 views
Getting anchor that contains bold tags with xPath?
I am using xpath and I am trying to get the anchor text from a link that looks like this:
<a href="http://link.com"><b>anchor</b> text</a>
I tried getting the anchor text ...
1
vote
1answer
492 views
HTML Agility Pack - Get Text From DIV with Align=left style
I want to know how to get the text from a DIV with align=left style?
Here is my code so far of my xpath query, my only problem is in here I dont know if my xpath query is correct.
I think the ...
0
votes
1answer
143 views
DOM check a node exist with html content
I have a XML content
<p>
This is my <em>Styled</em> content.
</p>
What I need to do is check the string
This is my <em>Styled</em> content.
exits on the ...
