how to scrape content from a table which shows only after clicking on “show table”. In source code I found the content is shown uder <div class="responsive-bootstrap-toolkit"
>. When I load the page this class is not visible. It appears only after clicking show button but the url does not change so I cannot use BeautifulSoup (the class I am looking for was not found when I tried to request it using BS).
How to solve this problem and scrape directly from python? What is the library I can use? I believe, the problem is how to load the content remotely from Python so that the source code would contain my table.
Thank you in advance.