Skip to content

Instantly share code, notes, and snippets.

@cjac
Created July 9, 2018 18:58
Show Gist options
  • Save cjac/d2290f06da16c354fcd49541e572a9d8 to your computer and use it in GitHub Desktop.
Save cjac/d2290f06da16c354fcd49541e572a9d8 to your computer and use it in GitHub Desktop.
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