Called when the loading state has changed.
(self, browser, is_loading, **_)
| 154 | |
| 155 | class LoadHandler(object): |
| 156 | def OnLoadingStateChange(self, browser, is_loading, **_): |
| 157 | """Called when the loading state has changed.""" |
| 158 | if not is_loading: |
| 159 | # Loading is complete. DOM is ready. |
| 160 | js_print(browser, "Python", "OnLoadingStateChange", |
| 161 | "Loading is complete") |
| 162 | |
| 163 | |
| 164 | class DisplayHandler(object): |
nothing calls this directly
no test coverage detected