Value Extractor
It is used to extract particular value from text.
On this page
Its regular expression field where you need to pass regex which will extract value
\d+.\d*
it extracts123.00
from$123.00
\d+
it extract123
from$123.00
try regex
@aria-checked
it extracts value (string
) from attributearia-checked="string"
@class
it extracts value (custom-checkbox
) from class attributeclass="custom-checkbox"
@type
it extracts value (checkbox
) from type attributetype="checkbox"
@attribute
it cam extractvalue
from attribute.
<input type="checkbox" aria-checked="true" class="custom-checkbox" attribute="value">