Is there a way to store a URL from a link using CSS instead of xpath?
store //tr[td[contains(.,'6 Day')]][1]/td[8]/a@href my_var
open $my_var
If so, how can I achieve this goal with css?
I managed to use the following locator:
store css=tr td:contains('6 Day') + td + td my_var
I tried adding a@href
or href
at the end but it didn't work. The subsequent open command failed with $my_var being unrecognized.