You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, a field location has a selector among other config. This selector defines what node of the webpage should be extracted for the given field. Because of the nature of selectors you can define the node names (e.g. div, a, header ...) classes (with dot, e.g. .title) and id's (with #). You cannot specify values for other attributes, e.g. if you have the following node: <span style="color: #3366ff;">MATHIEU BOOGAERTS</span> you cannot filter on style="color: #3366ff;" just with the selector.
TODO: add a mechanism that allows such filtering.
The text was updated successfully, but these errors were encountered:
Right now, a field location has a selector among other config. This selector defines what node of the webpage should be extracted for the given field. Because of the nature of selectors you can define the node names (e.g. div, a, header ...) classes (with dot, e.g. .title) and id's (with #). You cannot specify values for other attributes, e.g. if you have the following node:
<span style="color: #3366ff;">MATHIEU BOOGAERTS</span>
you cannot filter on style="color: #3366ff;" just with the selector.TODO: add a mechanism that allows such filtering.
The text was updated successfully, but these errors were encountered: