How to wait for a page to load in Selenium if its address is unknown?
I found the WebDriverWait method, but it requires a specific page address, and it is unknown. And implicitly_wait and time.sleep only wait for a fixed amount of time.
There is no need to explicitly check that the page has loaded. You can immediately interact with the elements of this page, and if the test fails, then the page has not loaded.