Added a bit more price displayer code

This commit is contained in:
Muhammad Ibrahim 2024-11-28 21:38:25 +05:30
parent 9a626f8842
commit 53e3bf6b7f

View File

@ -1,2 +1,16 @@
from selenium import webdriver
driver = webdriver.Chrome()
from selenium.webdriver.common.by import By
# Keep Google Chrome open after program finishes
chrome_options = webdriver.ChromeOptions()
chrome_options.add_experimental_option("detach", True)
driver = webdriver.Chrome(options=chrome_options)
driver.get("Your Product link here")
price_dollar = driver.find_element(By.CLASS_NAME, value="your price dollar or rupee class value")
price_cents = driver.find_element(By.CLASS_NAME, value="your price cents or paise class value")
print(f"The price of your product is {price_dollar.text}.{price_cents.text}")
driver.quit()