You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This direct access to Chromium's preference system gives you the same level of control as enterprise administrators and extension developers, making sophisticated browser customization possible within your automation scripts.
1166
1166
1167
+
## Page Load State Control
1168
+
1169
+
Control when navigations are considered loaded by selecting the page readiness checkpoint used by `tab.go_to()` and internal load waits.
1170
+
1171
+
- Default: `complete`
1172
+
- Optional: `interactive` (ends earlier once the DOM is interactive)
1173
+
1174
+
```python
1175
+
from pydoll.browser.chromium import Chrome
1176
+
from pydoll.browser.options import ChromiumOptions
1177
+
from pydoll.constants import PageLoadState
1178
+
1179
+
options = ChromiumOptions()
1180
+
options.page_load_state = PageLoadState.INTERACTIVE# default is COMPLETE
0 commit comments