in reply to Re^4: scrape a webpage
in thread scrape a webpage
Maybe try $B->{value} then, but you will have to stay within the Firefox framework then and not use any other HTML thing like HTML::TreeBuilder::LibXML.
If you have your tree already in HTML::TreeBuilder::LibXML, then use what the HTML::TreeBuilder::LibXML documentation suggests:
my $value = $node->attr('value');
|
|---|