EDIT:
So I have save the script codes below to a text file but using re to extract the data still doesn\'t return me anything. My code is:
Another way is to use Highcharts' JavaScript Library as one would in the console and pull that using Selenium.
import time
from selenium import webdriver
website = ""
driver = webdriver.Firefox()
driver.get(website)
time.sleep(5)
temp = driver.execute_script('return window.Highcharts.charts[0]'
'.series[0].options.data')
data = [item[1] for item in temp]
print(data)
Depending on what chart and series you are trying to pull your case might be slightly different.