I have wrapper with two randomly injected kinds of banners on site - one at time - only difference is that one kind uses data-abcde-zoneid="10"
and second is not.
I have to select those that doesn't contain data-abcde-zoneid="10"
where abcde
is random string and do some things with it.
Searching only by value or adding class to that element isn't possible.
The only solution is to find element which contains -zoneid="10"
or opposite to it.
I can't change injected html for banners.
I'm aware of finding class name or attribute value like in jQuery: Finding partial class name and I've tried use those to find solution but with no result.