How would one go about scraping a list from a < ul> tag if the list is only loaded in the div after a click is given on the original website?
I have tried using Selenium to automate the click, but because it doesn't change the https address of the website I am unsure how to get at this loaded-in data that otherwise returns < ul>< /ul> with Beautiful soup. The end goal is to get all of the data inside around 400 < li> tags inside of this dynamically loaded list, which is not seen in the inspect tool until after a button is clicked.
The website is: https://www.ibiscycles.com/test-ride/find-a-dealer
After manually clicking the search button the list of all applicable locations is loaded under this < div> name: This screenshot shows the breakdown using inspect
Thank you in advance!