I'm getting stuck at a webscraping project, I would like to webscrape the following website and the dates for each of the reviews. However I get 'January 1970' for all of the dates. https://fairygodboss.com/company-reviews/ebay-inc
Here is my code:
page_link = 'https://fairygodboss.com/company-reviews/ebay-inc' # for work/life balance for EBAY
page_response = requests.get(page_link, verify=False, headers={'User-Agent': randomUserAgents()})
soup = BeautifulSoup(page_response.content, 'html.parser')
soup.find_all(class_='textColor6 w-700 p-b-10')
Many thanks!