An HTML, XML, SAX, & Reader parser with the ability to search documents via XPath or CSS3 selectors… and much more
0
votes
0answers
17 views
nokogiri encoder error with cyrillic letters - is that a bug?
The following code produces:
encoding error : output conversion failed due to conv error, bytes 0xE8 0xED 0xF4 0xEE
I/O error : encoder error
When cyrillic letters are included in XML, text ...
0
votes
0answers
10 views
Can I change the XML node content using the Nokogiri .content method?
the goal of the code below is to take an XML code.
Take out of it the tag vco:parameter, clone it
Replace both name and value and insert it back into the XML text.
However, when I'm trying to replace ...
0
votes
1answer
30 views
Why am I getting different validation between an XSD regex with Nokogiri and normal Ruby regular expressions?
I have an XSD schema that includes a rule for a specific field to match the following regex:
\d{8}[\-]?[A-Za-z]{0,3}
Using irb, I can test with this regex and the following strings all match, which ...
0
votes
1answer
77 views
watir gem install error due to mini_magick file w/ special characters
I have been trying to install the watir gem for ruby 2. I followed the watir books install instructions exactly but once the watir install get to the mini_magick gem it gives this error
ERROR: While ...
0
votes
2answers
42 views
Scrape website with Ruby based on embedded CSS styles
In the past, I have successfully used Nokogiri to scrape websites using a simple Ruby script. For a current project, I need to scrape a website that only uses inline CSS. As you can imagine, it is an ...
1
vote
0answers
14 views
XML Class for the partial file used in a Nokogiri class XML
Using rails 3.0.7 and ruby 1.9.2.
I am using Nokogiri to build custom XML. I am calling a partial builder file in the main view file. But the class being used in partial for xml is not Nokogiri. Can ...
-2
votes
2answers
36 views
How do I exclude certain text in an HTML p tag with Nokogiri using CSS selectors? [closed]
I am dealing with HTML that follows the structure below. I want to ignore "RANDOM TEXT" and want to pull "TEXT I WANT" with a CSS selector.
The selector I am using right now is pulling all of the ...
0
votes
0answers
11 views
XSD documentation with Nokogiri
I'm currently writing a XML schema, and I'm using the <annotation> and <documentation> tag for the documentation of the fields. My problem is, that I can't find any good software that ...
0
votes
0answers
35 views
Nokogiri on OS X 10.8
I know there's a ton of questions about this here on SO, but I really can't manage to install Nokogiri on my OS X 10.8.3 system.
I did the rituals:
brew install libxml2 libiconv libxslt
brew link ...
0
votes
0answers
31 views
Nokogiri Gem Error Mac OS X Snow Leopard
I searched around Stack Overflow and read few web pages and tried out method from Nokogiri website with Macports and HomeBrew, but still nothing.
gem install nokogiri
ERROR: While executing gem ...
0
votes
1answer
25 views
Cant find element in clone document
I am using Nokogiri (1.5.9 - java) in JRuby ( 1.6.7.2 ) to copy an XML template and edit it. I'm having problems finding elements in the cloned document.
lblock = ...
-1
votes
3answers
26 views
Nokogiri ignores everything after the first attribute because of backslashes?
Why does Nokogiri ignore everything after the first attribute because of backslashes?
I'm not really sure why it's doing this:
[12] pry(Template)> b
=> "<td style=\\\"color:#fff; ...
1
vote
1answer
46 views
How do I add a value for a <textarea> using Nokogiri?
I want to add content in a textarea while parsing HTML using Nokogiri:
<textarea placeholder="Describe" title="Describe" name="Describe" value=""></textarea>
Here is my code where I set ...
0
votes
1answer
22 views
Mechanize get content between “div's”
I am using Mechanize gem.
How can i get content between two div's
"<div class='a'></div>content<div class='a'></div>"
Problem is that content is in between p tags.
...
2
votes
2answers
37 views
Need help exporting parsed results, via Nokogiri, and exporting to CSV,. Only last parsed result is shown, why?
This is killing me and searching here and the big G is confusing me even more.
I followed the tutorial at Railscasts #190 on Nokogiri and was able to write myself a nice little parser:
require ...
0
votes
3answers
38 views
Can't install nokogiri rubygem on windows 8.
So I've installed ruby (2.0.0 for x32) and DevKit-mingw64-32-4.7.2-20130224-1151-sfx.exe and made sure it worked on installing the json rubygem. I've downloaded ruby.exe in an admin account AND am ...
0
votes
2answers
23 views
Nokogiri group flat structure
I have an HTML structure like:
<div class='content'>
<h2>Title</h2>
<p>Some content for Title</p>
<h2>Another Title</h2>
<p>Content for Another ...
4
votes
1answer
55 views
How to find if a DOM element has an event listener with Ruby
I'm using Watir and Nokogiri to parse web pages and interact with them. I would like to identify whether a DOM element triggers a script when it is clicked. From my research, I understand that this is ...
0
votes
1answer
32 views
How do I convert a Nokogiri statement into Mechanize for screen scraping?
I'm trying to use Mechanize to scape some tags from a page. I've used Nokogiri successfully to scrape them before, but now I'm trying to combine them into a wider Mechanize class. Here is the Nokogiri ...
0
votes
0answers
16 views
JRuby, Nokogiri - Create all or update
What is better for the XML file size of 1 megabyte - 2 MB?
Creating a whole new XML or "just" update (on average half of the entries). Ie. Find, Compare, edit ...
I think a better relationship between ...
0
votes
1answer
52 views
Nokogiri lose my attribute's value named 'multiple'
Here's the code:
require 'nokogiri'
doc = Nokogiri::HTML("<!DOCTYPE html><html><input multiple='false' id='test' some='2'/><div multiple='false'></div></html>")
...
0
votes
0answers
26 views
xsl:output method text and relative import doesn't work with Nokogiri Jruby
We were using Nokogiri with Ruby since last 3 months and it was working absolutely fine. Due to some architectural change we are moving to Jruby. We realized that xsl:output method="text" doesn't work ...
0
votes
2answers
73 views
grab elements with containing text nokogiri xpath
Still learning how to use nokogiri and so far can grab by css elements.There is a page I want to scrape http://www.bbc.co.uk/sport/football/results, i want to get all the results for the barclays ...
1
vote
1answer
26 views
How do I access an attribute value based on a different attribute value?
I'm in the process of teaching myself Ruby and Nokogiri. I have an nmap scan, output as below:
<host starttime="1368204336" endtime="1368204506"><status state="up" reason="arp- response" ...
2
votes
2answers
37 views
With Nokogiri, how do you wrap the text contents of an element with a new tag?
I have an Nokogiri::XML::Element in which looks like this:
<div class="berg">This is some text!</div>
What I want to do is just extract the text from the div (which is the Nokogiri ...
0
votes
2answers
71 views
How do I download a web page into a single file from a specified URL?
I'm trying to scrape web pages.
I want to download a web page by providing its URL and save it for offline reading with all its images. I can't manage to do that with wget since it creates many ...
0
votes
2answers
31 views
How do I pull the correct image URL from this Wikipedia table?
I built a scraper to pull all the information out of a Wikipedia table and upload it to my database. All was good until I realized I was pulling the wrong URL on images, and I wanted the actual image ...
-1
votes
1answer
37 views
Ruby cannot find nokogiri/nokogiri
I'm using RVM and previously RBENV on OSX. I have my gems installed relative to my project path in ./gems
I am using the aws-sdk and attempting to use the s3 client results in a LoadError from ...
0
votes
2answers
85 views
How do I remove white space between HTML nodes?
I'm trying to remove whitespace from an HTML fragment between <p> tags
<p>Foo Bar</p> <p>bar bar bar</p> <p>bla</p>
as you can see, there always is a blank ...
0
votes
1answer
43 views
XPath and negation searches
I have the following code sample in an xmlns root:
<ol class="stan">
<li>Item one.</li>
<li>
<p>Paragraph one.</p>
<p>Paragraph ...
0
votes
2answers
40 views
How do I parse this HTML code with Nokogiri?
I have the following HTML:
<h3><strong>Adresse:</strong></h3>
<p>
Hochschule Darmstadt<br>
TechnologieTransferCentrum<br>
D19, Raum 221, 222<br>
...
0
votes
1answer
44 views
JRuby: Nokogiri 1.6 Failing To Install & Bundler Attempting To Install Already Met Dependency
I am getting an error on jruby (linux) when installing the
"trinidad_diagnostics_extension" gem (though this question is not about trinidad). A chain of dependencies is
generating the error:
...
0
votes
1answer
59 views
Explain this error: WARNING: Nokogiri was built against LibXML version 2.7.3, but has dynamically loaded 2.9.0
I've just installed the Spree ecommerce CMS without too much of a headache. I literally have no idea what this message means though. Could someone please explain this to me slowly?
Nokogiri appears ...
0
votes
3answers
88 views
Parse HTML string into array
I'm developing a wiki-like difference functionality for bodies of HTML produced by TinyMCE. diff-lcs is a difference gem that accepts arrays or objects. Most difference tasks are on code and just ...
2
votes
1answer
34 views
How do I scrape text with no style in HTML?
I am trying to scrape a time-stamp value which has no CSS associated to it:
<a href="famg.xml">famg.xml</a> 05-Sep-2012 22:21 32M
<a ...
0
votes
1answer
37 views
need help to install Nokogiri
I am using Ubuntu13.04. I have installed Ruby2.0 using RVM. But now looking for any guideline to install nokogiri and selenium-webdriver. But not found any concrete step by step instructions to ...
0
votes
1answer
24 views
How do I parse a page using Nokogiri?
I am trying to parse the URL shown in the doc variable below. My issue is with the job variable. When I return it, it returns every job title on the page instead of that specific job title for the ...
0
votes
1answer
51 views
Getting HTML table values using XPath in Nokogiri?
I'm trying to get some values from a table using the XPath of this table but it only returns [] (empty):
require 'nokogiri'
require 'open-uri'
url = "http://riopretrans.com.br/linhas.php?ln=106"
...
0
votes
1answer
24 views
Search by node content nokgiri::XML
How can I search by content of a node using nokogiri::XML ?
Lets say I have the following xml
<parts>
<part>
<name>foo</name>
<madein>
...
0
votes
1answer
32 views
set tag attribute and add plain text content to the tag using nokogiri builder (ruby)
I am trying to build XML using Nokogiri with some tags that have both attributes and plain text inside the tag. So I am trying to get to this:
<?xml version="1.0"?>
<Transaction ...
0
votes
2answers
48 views
How do I parse this HTML using Nokogiri?
Based on this HTML:
<li><strong><a href="http://www.ukasta.org.uk/">United Kingdom Agricultural Supply Trade Association</a> (UKASTA)</strong></li>
I want to get ...
0
votes
2answers
41 views
Nokogiri- how do I parse through this wikipedia table if it doesn't have unique TR names?
here is what I have so far...The issue is that it is producing a JSON file that looks like (see below). My problem is that when I inspect the code on the page, I don't see anything unique to the css ...
0
votes
1answer
41 views
error installing nokogiri when bundle install
When i run bundle install it stops by saying this . How to get out of this.Please help me.
I tried installing manually by 'http://nokogiri.org/tutorials/installing_nokogiri.html' but this did work ...
-1
votes
1answer
57 views
Mechanize redirect / Nokogiri (noob using mechanize)
I have something that looks like this:
def self.foo
agent = Mechanize.new
form = agent.get("link/to/form/url")
form.form_with(:name => "form_name") do |f|
f.field_with(:name => ...
0
votes
2answers
38 views
How to use nokogiri to select element after a specified element?
take the following table for example, I know how to match <td>'Title_A'</td> by xapth's text() function, is there any straight forward way to select the <td> text_unknown </td> ...
3
votes
1answer
72 views
How to get the last element of a sequence in XPath?
In Ruby we can access an array with negative numbers like array[-1] to get the last object in the array. How do I do this using XPath?
I can't do this:
result = ...
1
vote
1answer
45 views
Nokogiri: how to display partial output of the css selector?
Say that I am pulling the address from div.body h3 a. The issue is, what if I only wanted part of the address? For example, if the html read: <a href="/usa/sale/100-happy-street">100 Happy ...
0
votes
1answer
38 views
Nokogiri- creating a hash for each scraped result
I am attempting to create a hash for each result that matches my css selector. As it stands, there are about 10 results per page, but I would like to create a hash for each of these results. What ...
0
votes
0answers
46 views
Nokogiri- how do I separate my answers into a clean looking hash?
I am using nokogiri to parse through some html and give me all the results on the page. I want to ultimately set up into a hash like
:address => "xxx"
:unit => "xx"
:url => "www.xxx.com"
...
1
vote
2answers
58 views
Nokogiri- Parsing HTML <a href> and displaying only part of the URL
So basically I am scraping a website, and I want to display only part of the address. For instance, if it is www.yadaya.com/nyc/sales/manhattan and I want to only put "sales" in a hash or an array.
...

