You could use soup.find_all()
to select all span
then select desire output using index.
from bs4 import BeautifulSoup
html = '''<div class="_1hVBfR">
<span class="row _1kkfO3 BqOr_g">Google Nest Mini (2nd Gen) with Google A...</span>
<div class="row _65ZkAB">
<span class="_3dOR_a">
<span class="_65ZkAB">Color: </span>
<span class="-igymY">Black</span></span>
<span class="_3dOR_a"></span>
</div>
<div class="row _65ZkAB">
<span class="_65ZkAB _1uABhR">Seller: </span>
<span class="-igymY">Net Seller</span>
</div>
</div>'''
soup = BeautifulSoup(html, 'lxml')
res = soup.find_all('span', {'class': '-igymY'})[1]
print(res.text)
res = soup.find_all('span', {'class': '-igymY'})
print([t.text for t in res if t.text == 'Net Seller'][0])
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…