I have a code to pull the vessels from this website:
'https://signal.portoptimizer.com/'
I was able to open the table with the vessels using
arrow_icon = self.driver.find_element('xpath','/html/body/app-root/app-pure-frame/div/div/div/app-signal2-page/div/div/app-current-inbound-vessels/div/app-widget-card/div/div[2]/div/mat-expansion-panel/mat-expansion-panel-header/span[2]')
arrow_icon.click()
but now I want to have a list with all vessesls, tried with the below but it is showing no value in the list:
all_vessels = self.driver.find_elements(By.CLASS_NAME,"anchorage-by-terminal")
print(all_vessels)
What would be the issue?