I tried to parse a page to get some element as text, but I cant find how to get text from select
For exmaple, html below has data-initial-rating="4" and title="Members who rated this thread">12 Votes", but I cant get it
<select name="rating" class="br-select input" data-xf-init="rating" data-initial-rating="4" data-rating-href="/threads/isis-the-fall-v1-02-tjord.117157/br-rate" data-readonly="false" data-deselectable="false" data-show-selected="true" data-widget-class="bratr-rating" data-vote-content="<div data-href="/threads/game-mod-v-1-02/br-user-rated" data-xf-click="overlay" data-xf-init="tooltip" title="Members who rated this thread">12 Votes</div>" style="display: none;">
<option value=""> </option>
<option value="1">Terrible</option>
<option value="2">Poor</option>
<option value="3">Average</option>
<option value="4">Good</option>
<option value="5">Excellent</option>
</select>
what i tried
import requests
import lxml.html
response = requests.get('somewebsite.com')
tree = lxml.html.fromstring(response.text)
# full xptah
messy_rating_and_votes = tree.xpath('/html/body/div[2]/div/div[3]/div/div[1]/div/div/div[3]/div/div[2]/div/div/select')
print(messy_rating_and_votes) # its just print empty list, so i cant use .text or .text_content()
So, i guese thats i select wrong or use wrong method, but almost 2 hours of googling dosent help me
This example uses BeautifulSoup4
import requests
from bs4 import BeautifulSoup
response = requests.get("somewebsite.com")
soup = BeautifulSoup(response.content, 'html5lib') # requires pip install html5lib
for option in soup.find_all('option'):
print(f"value: {option['value']} text: {option.text}")