I have a webpage to web scrape which presents products with cheaper price first availability and seller name.
I need to get the first seller who has the product "Available" in a set of sellers
The list of sellers are presented in the following way
<li class="card js-product-card"
data-shopid="336"
data-shop-review-score="4.5"
data-shop-reviews-count="265">
<div class="shop cf">
<a title="Supplier1" class="shop-logo js-shop-logo" href="/m/336/Supplier1"></a>
</div>
<div class="description">
<div class="item js-product" data-product-id="35583015">
<h3>
<a title="Τροφοδοτικό (PSU) Thermaltake Smart RGB 700W" </a>
</h3>
<p class="availability">
<span class="availability instock">Not Available</span>
</p>
</div>
</div>
<div class="price" >
<div class="js-blp pre-blp content-placeholder">
<a title="Δες το στο κατάστημα" rel="nofollow" class="product-link js-product-link content-placeholder" href="/products/show/35289523">63,00€</a>
</div>
</div>
</li>
<li class="card js-product-card"
data-shopid="336"
data-shop-review-score="4.5"
data-shop-reviews-count="265">
<div class="shop cf">
<a title="Supplier1" class="shop-logo js-shop-logo" href="/m/336/Supplier1"></a>
</div>
<div class="description">
<div class="item js-product" data-product-id="35583015">
<h3>
<a title="Τροφοδοτικό (PSU) Thermaltake Smart RGB 700W" </a>
</h3>
<p class="availability">
<span class="availability instock">Available</span>
</p>
</div>
</div>
<div class="price" >
<div class="js-blp pre-blp content-placeholder">
<a title="Δες το στο κατάστημα" rel="nofollow" class="product-link js-product-link content-placeholder" href="/products/show/35289523">68,00€</a>
</div>
</div>
</li>
<li class="card js-product-card"
data-shopid="338"
data-shop-review-score="3"
data-shop-reviews-count="135">
<div class="shop cf">
<a title="Supplier3" class="shop-logo js-shop-logo" href="/m/336/Supplier3"></a>
</div>
<div class="description">
<div class="item js-product" data-product-id="37583015">
<h3>
<a title="Τροφοδοτικό (PSU) Thermaltake Smart RGB 700W" </a>
</h3>
<p class="availability">
<span class="availability instock">Available in 1-3 Days</span>
</p>
</div>
</div>
<div class="price" >
<div class="js-blp pre-blp content-placeholder">
<a title="Δες το στο κατάστημα" rel="nofollow" class="product-link js-product-link content-placeholder" href="/products/show/35289523">69,00€</a>
</div>
</div>
</li>
I need to get the Title of < a > tag which is the seller's name and the text Available together with the price