- WWW::Mechanize::Chrome 0.10
- Iridium 2017.11 in a headed desktop session
I want to set the value of a certain formless input field.
my $field = $w->selector('tr.edit td[data-attribute="name"] input', single => 1);
finds it.
$field->attributes->{value} = 'test';
has no apparent effect.
Both
$w->field($field => 'test');
and
$w->field('tr.edit td[data-attribute="name"] input' => 'test');
error out with No elements found for form number 1
.