While wait_for_page() the function itself is possible to take a timeout parameter, looks like when it's called in dash.testing.browser it is now always 10 sec for selenium to wait for dash app to serve.
|
def wait_for_page(self, url=None, timeout=10): |
At our workplace we have some "heavy" setups on our dash apps. And I get error when trying out dash.testing like wait_for_page(347): dash server is not loaded within 10 seconds...
While wait_for_page() the function itself is possible to take a timeout parameter, looks like when it's called in dash.testing.browser it is now always 10 sec for selenium to wait for dash app to serve.
dash/dash/testing/browser.py
Line 602 in 597dc22
dash/dash/testing/browser.py
Line 335 in 597dc22
At our workplace we have some "heavy" setups on our dash apps. And I get error when trying out dash.testing like
wait_for_page(347): dash server is not loaded within 10 seconds...