How can I scrape tooltips value from a Tableau graph embedded in a webpage

Edit I’ve made a python library to scrape tableau dashboard. The implementation is more straightforward : from tableauscraper import TableauScraper as TS url = “https://public.tableau.com/views/Colorado_COVID19_Data/CO_Home” ts = TS() ts.loads(url) dashboard = ts.getDashboard() for t in dashboard.worksheets: #show worksheet name print(f”WORKSHEET NAME : {t.name}”) #show dataframe for this worksheet print(t.data) run this on repl.it Old answer … Read more