Selenium web scraping on streamlit cloud

My issue is that I cannot find all the html content. I’m looking for a table that in the deployed stage does not appear, and locally it works perfectly.

s = BeautifulSoup(self.driver.page_source, features='lxml')
table = s.find(
                "table",
                class_=
                "table table-primary table-forecast allSwellsActive msw-js-table msw-units-large"
            )