Feature tag specific areas of URL

I have a feature that I just can't figure out how to tag, and the suggested elements aren't specific enough.

I could potentially use the URL that it links to. For example: "/jobs/1234" but I need to track all individual job IDs, so I thought I could use the wildcard to find all the elements with any numbers after /jobs/. It's not finding anything on the page. 

[href="/jobs/*"] 

I could also potentially put in a custom HTML reference because all of these are within a turbo frame, but I also can't figure that out for kind of the same reason. The element specifically referenced is turbo-frame id="position_vacancy_1234" but again I need to reference any vacancy number. I tried using the "starts with" attribute but I couldn't figure out how to find the ID of the turbo-frame.

0

Comments

1 comment
  • add another * after href so it's more like "href contains" and see if that works?

    [href*="/jobs/*"] 
    or
    [href*="/jobs/"]
    0

Please sign in to leave a comment.

Didn't find what you were looking for?

New post