I just start learning python. So on this chapter it's basically to a create a price tracker using selenium.
The photo below is what I'm trying to get using selenium.
if i try
search_box = driver.find_element(By.CLASS_NAME, "a-price a-text-price a-size-medium apexPriceToPay")
it shows red sea of lines , saying no buch Message: no such element
Then I try
search_box = driver.find_element(By.CLASS_NAME, "a-offscreen")
the output is: <selenium.webdriver.remote.webelement.WebElement (session="0e1349ab77fff9cc0f9c565cc173927d", element="bbd837af-3cdf-4bd1-825c-9fd8cd27f719")>
I'm really new to programming...so I tried using .text at the end, no luck!
what can i do to get the price?