I want to get the price from the Amazon website.
How can I take the price number?
#---------------------------------------------------------------------------------
chrome_driver_path = r"C:\Users\user\Desktop\Development\chromedriver.exe"
service = Service('C:\Program Files\Chrome Driver\chromedriver.exe')
driver = webdriver.Chrome(service=service)
driver.get("https://www.amazon.com/Apple-MacBook-16-Inch-Storage-2-6GHz/dp/B08CZT64VP/ref=sr_1_4?crid=2T5BGI71K1C8W&keywords=macbook&qid=1689176236&sprefix=macboo%2Caps%2C357&sr=8-4")
price = driver.find_element(By.CLASS_NAME,"a-offscreen").get_attribute("aria-hidden")
print(price)
#---------------------------------------------------------------------------------
#output: None