Web scraping by toggling a table

Hey guys,
I want to scrape the data in the table from this webside.
https://sismos.panamaigc-up.com/eqview/#

You get the table by clicking on the table symbol on the top right of the left-sided panel.
The table and the data is visible in the HTML code of the webside (div class=gbody and then the table rows) but the content is missing in my soup in python.

The code I'm using is:
from bs4 import BeautifulSoup
from selenium import webdriver
driver = webdriver.Firefox()

url = "https://sismos.panamaigc-up.com/eqview/"
driver.get(url)
soup = BeautifulSoup(driver.page_source, 'html.parser')
driver.quit()
test = soup.prettify()

Can anybody help me to access the data in the table?

Thank you in advance,
JulZ

This should work. I used Page load delay: 5500

{"_id":"forum-sismos","startUrl":["https://sismos.panamaigc-up.com/eqview/#"],"selectors":[{"id":"Toggle table","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"a.icon.glyphicon","multiple":false,"delay":"2200","clickElementSelector":"a.icon.glyphicon","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"Row wrappers","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.gbody > div.grow.ng-scope","multiple":true,"delay":0},{"id":"Origin time","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"div:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"Event ID","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"div:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"Lat","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"div:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"Lon","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"div:nth-of-type(4)","multiple":false,"regex":"","delay":0},{"id":"Depth","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"div:nth-of-type(5)","multiple":false,"regex":"","delay":0},{"id":"Magnitude","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"div:nth-of-type(6)","multiple":false,"regex":"","delay":0}]}