1
vote
0answers
7 views
Mechanize not recognizing anchor tags via CSS selector methods
(Hope this isn't a breach of etiquette: I posted this on RailsForum, but I haven't been getting much response from there recently.)
Has anyone else had problems with Mechanize not recognizing anchor …
1
vote
1answer
84 views
how to read nokogiri.org documentation? (ruby+mechanize+nokogiri)
last week I started to write a script in ruby. I needed to scrape some data from the web so I was recommended to use mechanize and then nokogiri.
Mechanize documentation says Mechanize uses nokogiri …
0
votes
1answer
13 views
Rake task to fetch XML stream with nogokiri and write selected fields to DB
Hey Everybody,
I am trying to build a rake tasks, that fetches a product feed and adds it to my db.
task :testme => :environment do
require 'nokogiri'
require 'zlib'
require 'open-uri'
@url …
0
votes
2answers
65 views
how to get horizontal depth of a node ?
note i made up the term horizontal depth to measure the sub-dimension of a node within a tree.
so imagine a which would have xpath something like /html/table/tbody/tr/td, and "horizontal depth" of 5
…
1
vote
1answer
85 views
why can’t i wrap <span> around the rfollowing nokogiri xpath ?
doc = Nokogiri::HTML(open(url)).xpath("//*")
.xpath("//*[br]/text()[string-length(normalize-space()) != 0]")
.wrap("<span></span>")
puts doc
it just returns the text ... i was …
0
votes
3answers
173 views
How to do a regex search in nokogiri
given:
require 'rubygems'
require 'nokogiri'
value = Nokogiri::HTML.parse(<<-HTML_END)
"<html>
<body>
<p id='para-1'>A</p>
<div class='block' id='X1'>
…
1
vote
3answers
103 views
What is the absolutely cheapest way to select a child node in Nokogiri?
I know that there are dozens of ways to select the first child element in Nokogiri, but which is the cheapest?
I can't get around using Node#children, which sounds awfully expensive. Say that there …
2
votes
1answer
34 views
How can I extract html escape chars/entities as text when scraping web? (ruby & nokogiri)
In my ruby+mechanize(nokogiri) script I use this piece of code:
row.at_xpath('td[3]/div[1]/a/text()').to_s.strip
on a forum where the post title html looks like:
<a …
0
votes
1answer
65 views
how to use nokogiri methods .xpath & .at_xpath
I'm learning how to use nokogiri and few questions came to me based on the code below
require 'rubygems'
require 'mechanize'
post_agent = WWW::Mechanize.new
post_page = …
0
votes
1answer
96 views
extract single string from html using ruby/mechanize (and nokogiri)
I am extracting data from a forum. My script based on is working fine. Now I need to extract date and time (21 Dec 2009, 20:39) from single post. I cannot get it work. I used FireXPath to determine …
0
votes
0answers
30 views
webrat, rspec, nokogiri segfault
I'm getting a segfault in nokogiri (1.4.1) run (under cucumber 0.6.1/webrat 0.7.0/rspec 1.3.x)
response.should have_selector("div", :class => "fieldWithErrors")
and the div in the page is …
1
vote
3answers
740 views
inserting and deleting nokogiri XML nodes and elements
my basic aim is to extract parts of an XML file and make a note that i extracted some part in that file (like "here something was extracted".
trying around a lot with nokogiri now, it seems like not …
1
vote
1answer
44 views
Nokogiri Element Removal Using Regex in Ruby
This seems like the hardest problem I have had yet, but maybe I am making it harder than it needs to be. I need to remove an unknown number of nested elements that may or may not be at the beginning …
0
votes
1answer
58 views
Editing Text in a Nokogiri Element or Using Regex
Is there a way to edit the text of a nokogiri element? I have a nokogiri element that contains a list element (<li>) and I would like to remove some characters from the text while preserving …
1
vote
3answers
181 views
how to use xpath? (nokogiri)
I have not found any documentation nor tutorial for that. Does anything like that exist?
doc.xpath('//table/tbody[@id="threadbits_forum_251"]/tr')
the code above will get me any table, anywhere, …
