I need to find all elements in huge xml, that has tag 'WOR' and attr distName.
Value matches
MNL-\d+/AAA-\d+
e.g. <WOR distName="MNL-123/AAA-4" />
Hovever i cannot figure out, how to properly use that in RFs XML Library, documentation does have no info about it too.
I've tried to use Keyword 'Evaluate Xpath', but my search still is bad:
Library XML use_lxml=True
Evaluate Xpath ${XML} //WOR[re:match(@distName, "MNL-[0-9]+/AAA-[0-9]+")]
Finding elements with xpath, I think you might do something wrong.