HTML-код:
<td id="ContentPlaceHolder1_ContentPlaceHolder1_Product_eBay1_tdBINPrice">
<input id="ContentPlaceHolder1_ContentPlaceHolder1_Product_eBay1_txtBuyItNowPrice" name="ctl00$ctl00$ContentPlaceHolder1$ContentPlaceHolder1$Product_eBay1$txtBuyItNowPrice"
style="width:50px;" type="text" value="1435.97"/>
<img id="ContentPlaceHolder1_ContentPlaceHolder1_Product_eBay1_imgCustomPriceCalculator" src="/images/ChannelPriceCustom.png" style="width:16px;"/>
</td>
Я бы хотел добавить текст в атрибут «Значение» («1435,95»)
Я попытался сделать это, выполнив следующий код, но не повезло.
driver.get(someURL)
page = driver.page_source
soup = BeautifulSoup(page, 'lxml')
price = soup.find('td', {'id' : re.compile('ContentPlaceHolder1_ContentPlaceHolder1_Product_eBay1_tdBINPrice')})
print(price)
Спасибо!