Hi guys, just a quick question with scraping. This is the part of the html code that i’m scraping. Form there, I would like to scrape the label value without the class name of hide-oos-disable. How can I achieve that.
<fieldset class="js product-form__input">
<legend class="form__label">Size</legend><input type="radio" id="template--14819390488630__main-1-0" name="Size" value="XXS" form="product-form-template--14819390488630__main" disabled="">
<label for="template--14819390488630__main-1-0" class="hide-oos-disable">
XXS
</label><input type="radio" id="template--14819390488630__main-1-1" name="Size" value="XS" form="product-form-template--14819390488630__main" checked="">
<label for="template--14819390488630__main-1-1">
XS
</label><input type="radio" id="template--14819390488630__main-1-2" name="Size" value="S" form="product-form-template--14819390488630__main">
<label for="template--14819390488630__main-1-2">
S
</label><input type="radio" id="template--14819390488630__main-1-3" name="Size" value="M" form="product-form-template--14819390488630__main" disabled="">
<label for="template--14819390488630__main-1-3" class="hide-oos-disable">
M
</label><input type="radio" id="template--14819390488630__main-1-4" name="Size" value="L" form="product-form-template--14819390488630__main" disabled="">
<label for="template--14819390488630__main-1-4" class="hide-oos-disable">
L
</label></fieldset>