If I have elements with a title
attribute like the examples below, how can I select the div
with the title
custom-marker-wqs-tailrace bbu-l2
using a CSS regex selector?
<div title="custom-marker-awlr-tailrace bbu-l2"></div>
<div title="custom-marker-aws-tailrace btut"></div>
<div title="custom-marker-arr-tailrace sbu-l3"></div>
<div title="custom-marker-wqs-tailrace bbu-l2"></div>
<div title="custom-marker-wqs-tailrace bbu-l1"></div>
Is it possible to use something like
div[title*="customer-marker-wqs...???"]
? I'm not sure what should replace the "???" in this case.