Within a webpage, there are two types of links. One type includes both a class and itemprop, while the other type only contains a class. In the examples below, the first link has both class and itemprop, and the second link only has a class. If I want to create a selector that excludes links with "itemprop," what would that selector look like?
<a href="/los-angeles-ca/mip/crispy-crust-hollywood-location-443529?lid=1000226108758" itemprop="name" class="business-name"></a>
<a href="/los-angeles-ca/mip/casa-bianca-pizza-pie-13519?lid=1000203432051" data-analytics="{"target":"name","feature_click":""}" rel="" class="business-name" data-impressed="1"></a>
My attempt with the following selector selects all links:
a.business-name
When I tried this, it only selects links with itemprop:
a[itemprop="name"].business-name
Attempting to select only the class did not work with this selector:
a:not([itemprop="name"]).business-name