I can not figure out how to scrape it, seems like the info is being hidden by Ng-show and after many attempts, nothing I found seems to work.
I want to scrape the product description and the shipping time
This is my current code:
from selenium import webdriver
from selenium.webdriver.common.by import By
# Set up the Chrome driver
driver = webdriver.Chrome()
# Navigate to the website
driver.get("https://cjdropshipping.com/product/silicone-grip-device-finger-exercise-stretcher-finger-gripper-strength-trainer-strengthen-rehabilitation-training-p-1614453269613522944.html?from=HTP")
# Find the element that contains the title of the product
title_element = driver.find_element(By.CSS_SELECTOR, 'div > div > div > div > div > div > pro-detail > div').get_attribute("textContent")
print(title_element)
# Extract the text from the element
title = title_element.text
# Print the title
print(title)
# Close the driver
driver.quit()