problem with executing the script from page
and here is the code
pprint(wd.execute_script("return getChartInitJsCode_5f9462fb094a4()"))
the complete code is:
from selenium import webdriver
from pprint import pprint
options = webdriver.ChromeOptions()`
options.add_argument('--headless')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
wd = webdriver.Chrome(options=options)
wd.get("https://www.collectorsquare.com/en/watches/breitling/navitimer/lpi")
pprint(wd.execute_script("return (getChartInitJsCode_5f9462fb094a4())"))

