Created
July 9, 2018 18:58
-
-
Save cjac/d2290f06da16c354fcd49541e572a9d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my $toolhead_node = $dom->find( 'td.toolhead-table-cell span.toolhead' ); | |
my @found; | |
$toolhead_node->each( | |
sub { | |
my ( $toolhead_node ) = ( @_ ); | |
push( @found, $toolhead_node ) | |
if ( $toolhead_node->text eq $field_label ); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment