0
votes
2answers
27 views

Python XML XPath partial failure message

in some code I maintain there's XML parsing using minidom library. For the XML structure similar to the below: <a val="a1"> <b val="b1"> <c val="c1"> Data ...
1
vote
1answer
43 views

Why Cant I Click an Element in Selenium?

I am trying to click an element in Selenium. The site is: url = "http://jenner.com/people" The xpath for the element is: url = //div[@class='filter offices'] Here is my code: from selenium ...
0
votes
1answer
21 views

What does etree.xpath function of python lxml library do?

I understand that etree object from lxml library is a tree representation of a xml document. It is not clear to me what .xpath function does. I just need to know how to interpret its argument and its ...
0
votes
1answer
46 views

Python: Parsing HTML elements based on absolute XPath

I'm working on a project where I have to parse 20 different HTML pages based on URLs and I would like to get some information from all of them. Pages have different structure and the required ...
0
votes
1answer
21 views

XPath in Python - How to Find All Elements with a Specified SubElement/SubElement.text Pair

I'm new to XML and XPath, which I'm tackling via Python. I know how to write a Python script using a simple XPath expression that does what I'm looking for, but I get the feeling that it could be slow ...
1
vote
1answer
52 views

Python/lxml web scraping: dealing with blank entries

I'm using Python and lxml to scrape data on ETFs and mutual funds from the Bloomberg web site. An example of a page I'm trying to scrape data from is ...
0
votes
1answer
22 views

passing evaluated xpath to extension

I'm working with lxml python lib. Assuming we have product xml such as: <product id='123' /> And want to apply xsl template: <xsl:template match="product"> <ssi:include ...
0
votes
1answer
32 views

Get Element Tree with Python lxml

I have the following xml record within a larger xml file: <Employee> <id>999</id> <fname>Tim</fname> <lname>Boskin</lname> </Employee> I am ...
1
vote
1answer
50 views

get img src from dom.xpath

I have this code which reads links(URLs) from a web page and prints them on the screen. connection = urllib.urlopen("http://www.google.com") dom = lxml.html.fromstring(connection.read()) for link in ...
0
votes
1answer
52 views

xpath: How to write conditional xpaths?

I am trying to extract price information from following two pages: http://jujumarts.com/mobiles-accessories-smartphones-wildfire-sdarkgrey-p-551.html ...
0
votes
1answer
69 views

How to control newline processing in the lxml xpath text() function?

Having switched from Fedora 17 to 18, I get different parsing behaviour for the same lxml code, apparently due to different versions of the underlying libraries (libxml2 and libxslt versions changed). ...
-1
votes
1answer
28 views

finding a href with a specific text in a table

I have an html tables and I am trying to find the row that has a href tag whose text content has the word "Unsubscribe" in it. I am using lxml, python and xpath - I can find the row using this: ...
0
votes
1answer
38 views

How to use xpath in python to list attribute values

I'm using the below python code to do an xpath attribute lookup, but getting an error:selector.append(ops[token[0]](next, token)) KeyError: '@' Just using the starndard python2.7 release with no extra ...
0
votes
1answer
25 views

find number of 'p' tags in a div and iterate through them to scrape the underlying text using python xpath

I've tried this; no_of_p_tags = 10 # I'm assuming this. Yet to figure out how to find this. for x in range(1,no_of_p_tags + 1) test = ...
1
vote
2answers
56 views

Using text(), is there a way to convert empty text to 'None' with scrapy

I'm running into a problem. The website xml I'm scraping has some values that are empty, but I need to preserve the order of the values. sample: <thedata> <some-item> ...
0
votes
1answer
134 views

Assert text is present which contains acronyms using Selenium

I've setup a function of my Selenium (v 2.3) tests to check for the presence of certain error messages which has worked perfectly until an element I'm checking has an acronym in. My function gets all ...
0
votes
2answers
73 views

Python-3.x SIMPLE XPath Library

I am trying to parse quite simple XML using Python. Before Python 3 I used "webscraping" library with XPath functionality. Works very simple: xpath.search(xml (xml string), "XPath Query (//search)" ...
-1
votes
1answer
70 views

Scrapy Xpath: when I select the <td><12</td>, I get“ <td>\r\n\t\t\t\t\t\t</td>” instead of “<12” [closed]

The html code is like <td><12</td> And i wanna to get the "<12", but when I use "select('td/text()').extract()", I get "[u'\r\n\t\t\t\t\t\t']". Every items contain "<" are all ...
0
votes
3answers
102 views

Inherit a parent Menu OpenErp

I would like to have my module menu "nested" inside Purchase Orders in the OpenErp's Purchase App. Right now my module has the following statements (The parent being itself) <menuitem ...
1
vote
1answer
59 views

Use a variable for an Xpath query in Python

[N.B. I'm quite new to Python & Xpath] I was wanting to perform an Xpath query and use a variable in the expression to cycle through all the elements using an index. For example, rather than ...
0
votes
1answer
31 views

scrapy misses xpaths where xpath contains cp1251

fk crazy editor =_+ http://dpaste.com/1035040/ ## CODE here # Values response: {'articul': [u'testetete'], 'diametr': ['Empty'], 'image': [u'/foto/11.20.jpg'], 'name': ...
0
votes
2answers
111 views

Extract value with XPath, etree and python

I try to extract a value with XPath, Python and etree. I have no influence on the .xml file I receive and I think it seems to be somehow invalid. My method already extracts the text node object I ...
0
votes
2answers
96 views

Scrapy. Extract html from div without wrapping parent tag

I use scrapy to crawl a website. I want to extract contents of certain div. <div class="short-description"> {some mess with text, <br>, other html tags, etc} </div> ...
1
vote
2answers
69 views

parsing xml by python lxml tree.xpath

I try to parse a huge file. The sample is below. I try to take <Name>, but I can't It works only without this string <LevelLayout ...
0
votes
1answer
93 views

xpath to select from child element to end of parent

I am trying to do this using lxml, but utlimately it is a question about the proper xpath. I'd like to select from the <pgBreak> element until the end of its parent, in this case <p> XML IN: ...
1
vote
0answers
55 views

lxml._ElementTree.getpath(element) returns “*” instead of tag names for elements in non default name space

Please help to make getpath() to return full tag names in getpath() xpath or to find workaround I'm trying to generate xpath to element in a lxml.etree._ElementTree. ElementTree is generated by ...
1
vote
1answer
59 views

Python lxml xpath XPathEvalError: Invalid expression — why?

I'm trying to parse an SVG document with lxml. Here's my code: nsmap = { 'svg': 'http://www.w3.org/2000/svg', 'xlink': 'http://www.w3.org/1999/xlink', } root = etree.XML(svg) # this works ...
0
votes
1answer
37 views

Extracting text form specific nested nodes with attributes

I am trying to write XPath that will select <h3>, <ul> and <p> tags under div[@class="content"] but with p[position() > 1 and position() < last() - 1] So far I have this.... ...
0
votes
1answer
51 views

scrapy, invalid xpath, starting position

I'm trying to use scrapy, and I have this ridiculous html that I'm trying it on. Using the Xpath Checker firefox plugin, this is the first row in the table: ...
1
vote
1answer
68 views

Extract href values with xpath on python 2.7

Quick and simple: <a href="some content">Click here</a> How can i extract "some content" and "click me" with xpath on python? So far i have the following ( extract only "some content" ...
0
votes
3answers
87 views

Get xpath from search result of a specific regex pattern in a bunch of xml files

I have many XML files, and i have to search in these files a string (in detail that will be a not-too-complicated regex). With the results i want to get the xpath of the node in which the string is, ...
0
votes
2answers
68 views

Parsing failing with LXML Xpath using utf-16

I am parsing the following page: http://www.amazon.de/product-reviews/B004K1K172 Using lxml based etree for parsing. Content variable containing the entire page content Code: myparser = ...
1
vote
1answer
232 views

How to properly use Rules, restrict_xpaths to crawl and parse URLs with scrapy?

I am trying to program a crawl spider to crawl RSS feeds of a website and then parsing the meta tags of the article. The first RSS page is a page that displays the RSS categories. I managed to ...
1
vote
2answers
62 views

Python/Xpath convert query

I'm trying out Scrapy. I've got the following: hxs.select('//span[contains(@itemprop, "price")]').extract() Outputs: [u'<span itemprop="price" class="offer_price">\n<span ...
0
votes
1answer
91 views

How to extract strange WWW source code using lxml and XPath

I'm running small project which concern extracting data from WWW. I found ww with strange source code inside: <adr:terc xmlns:ks="http://asseco.pl/xml/rpm/ksiegaPodmiot/2011/04/08/" ...
0
votes
1answer
167 views

How to write recursive scrapy rule with regular expression?

the pattern of the url is http://www.khmer24.com/ad/change-petrol-to-gas-use-injector-special-price/67-204320.html I want to keep the domain, ad, and number 67 in the url. Here is the sample url: ...
0
votes
1answer
44 views

XPath in Python using xmllint2

I try to make a query with xpath in python in order to print differrent parts of a kml file. The problem is: when I make my query I have very strange results. Here is my code: import libxml2 ...
1
vote
1answer
57 views

Scrapy won't select embed elements

I'm using Scrapy to actually know if there is any flash content in a website. I use the following code: hxs = HtmlXPathSelector(response) (len(hxs.select('//embed[contains(@src,".swf")]')) > 0 or ...
0
votes
0answers
52 views

Issues a longer xpath expression

I am having issues with the urllib and lxml.html modules. Here is my original code: import urllib import lxml.html down='http://v.163.com/special/visualizingdata/' ...
0
votes
3answers
53 views

conditional xpath? need xpath if more specific xpath is matched

I'm trying to create a list of dicts with two data items. The page I'm looking at has 37 matches for //div[@id='content']/*[self::p or self::h2]/a[2]; however, it only has 33 matches for ...
1
vote
2answers
39 views

How do I refer to the value of the child of a current node when selecting another node with XPath? (DDEX Related)

Consider this XML structure, a dumbed-down version of the DDEX standard: <doc> <master> <ResourceInfo> <Name>Foo</Name> <Seq>1</Seq> ...
2
votes
2answers
130 views

Get the inner HTML of a element in lxml

I am trying to get the HTML content of child node with lxml and xpath in Python. As shown in code below, I want to find the html content of the each of product nodes. Does it have any methods like ...
0
votes
0answers
82 views

Xpath for Google Search Results

I'm trying to grab the results from a Google search but am coming up empty handed -- For example: site:github.com "python" "San francisco" "followers" And I want to grab the first result -- ...
0
votes
1answer
31 views

scrapy xpath exception

self.product_urls.extend(hxs.select("//div[@id="product-list"]//div[@class="product-images"]/table/tr[1]//a')").extract()) This line of code gives me an exception "Invalid Path", I guess it's ...
1
vote
1answer
90 views

Parsing XML with LXML and Python

I have the following XML: <nfl> <season season="2012"/> <conference label="AFC"> <division label="Eastern Division"> <team city="Buffalo" name="Bills" ...
0
votes
0answers
64 views

Convert between XPath and string indexes in Python

I've got a webpage represented as an XHTML string, and I've got a list of annotations on that webpage. The anchor location for each annotation is defined by an XPath expression plus a string index, ...
0
votes
1answer
250 views

Selenium HTMLUNIT Python scroll pages

I have a website which generates more products when I scroll down. Unlike other websites, there is nothing found in the firebug console. So, I am using selenium to simulate a browser. I have made it ...
0
votes
1answer
102 views

XPath working in scrapy but not in selenium

I have an xpath which works in python-scrapy and also in the firebug extension of firefox. But, it is not working in python-selenium. The code I am using in selenium is this xpath = ...
0
votes
1answer
85 views

XPath: How do I find the parent element and its class for all text nodes

For all text nodes, how do I find the parent element's class and tag type
1
vote
1answer
947 views

selenium python stuck on this line

Why does my code: self.driver.find_element_by_xpath("//*[text()[contains(.,'%s')]]" % ('Sorry')) Get stuck and won't pass this line? Even if I do something like: driver.implicitly_wait(30) ...

1 2 3 4 5 7