My goal is to get only the data from a specific table in a website. If possible, opened website could be run on the background preventing to pop-up.
I have tried Get page generated with Javascript in Python answer to apply, but it dumps all the data in the site rather than only the table. My best option is to parse it from there. As alternative I have tried How to extract tables from websites in Python answer but returned list object is empty.
As an example, I want to pull table (given information under the Symbol Size Entry_Price Mark_Price PNL
) that is located at the bottom of the page from this site.
How can I achive this? While achieving it can the opened browser open on the background preventing the focus to itself?