I want to scrape the bus schedule times from the following website https://ul.se . It's in Swedish but there is an English option and in any case it doesn't affect my main question. By putting the locations we are interested in the search fields we arrive at the following link which is an examples of ones I am interested in. https://www.ul.se/#/700600/0/Uppsala%20Centralstation%20(Uppsala)/700591/0/Stadsbiblioteket%20(Uppsala)//2/
By right clicking and inspecting the elements I want to scrape I can see them in dev tools but at the whole page source it is not listed. For example, looking at the first available time for the next bus by copying the selector I get
#travelResults > ul-search-journey-result-card:nth-child(3) > div > div.result-head > div.result-row.time > span.dpt-arr-time.ng-binding
This does not work at all in my code. Even if I forget BeautifulSoup (which is what I am trying to use) and just search the full html for any numbers indicating time, there is still nothing. In the entire source, there appear to be no numbers that indicate time. What am I missing? How could that problem be tackled? Any help is appreciated, I am very new to all of this.