@@ -66,7 +66,7 @@ def browser_attach_timeout(self) -> int:
6666 return self ._options .get (self .BROWSER_ATTACH_TIMEOUT )
6767
6868 @browser_attach_timeout .setter
69- def browser_attach_timeout (self , value : int ):
69+ def browser_attach_timeout (self , value : int ) -> None :
7070 """
7171 Sets the options Browser Attach Timeout
7272
@@ -84,7 +84,7 @@ def element_scroll_behavior(self) -> ElementScrollBehavior:
8484 return self ._options .get (self .ELEMENT_SCROLL_BEHAVIOR )
8585
8686 @element_scroll_behavior .setter
87- def element_scroll_behavior (self , value : ElementScrollBehavior ):
87+ def element_scroll_behavior (self , value : ElementScrollBehavior ) -> None :
8888 """
8989 Sets the options Element Scroll Behavior
9090
@@ -102,7 +102,7 @@ def ensure_clean_session(self) -> bool:
102102 return self ._options .get (self .ENSURE_CLEAN_SESSION )
103103
104104 @ensure_clean_session .setter
105- def ensure_clean_session (self , value : bool ):
105+ def ensure_clean_session (self , value : bool ) -> None :
106106 """
107107 Sets the options Ensure Clean Session value
108108
@@ -118,7 +118,7 @@ def file_upload_dialog_timeout(self) -> int:
118118 return self ._options .get (self .FILE_UPLOAD_DIALOG_TIMEOUT )
119119
120120 @file_upload_dialog_timeout .setter
121- def file_upload_dialog_timeout (self , value : int ):
121+ def file_upload_dialog_timeout (self , value : int ) -> None :
122122 """
123123 Sets the options File Upload Dialog Timeout value
124124
@@ -136,7 +136,7 @@ def force_create_process_api(self) -> bool:
136136 return self ._options .get (self .FORCE_CREATE_PROCESS_API )
137137
138138 @force_create_process_api .setter
139- def force_create_process_api (self , value : bool ):
139+ def force_create_process_api (self , value : bool ) -> None :
140140 """
141141 Sets the options Force Create Process Api value
142142
@@ -152,7 +152,7 @@ def force_shell_windows_api(self) -> bool:
152152 return self ._options .get (self .FORCE_SHELL_WINDOWS_API )
153153
154154 @force_shell_windows_api .setter
155- def force_shell_windows_api (self , value : bool ):
155+ def force_shell_windows_api (self , value : bool ) -> None :
156156 """
157157 Sets the options Force Shell Windows Api value
158158
@@ -168,7 +168,7 @@ def full_page_screenshot(self) -> bool:
168168 return self ._options .get (self .FULL_PAGE_SCREENSHOT )
169169
170170 @full_page_screenshot .setter
171- def full_page_screenshot (self , value : bool ):
171+ def full_page_screenshot (self , value : bool ) -> None :
172172 """
173173 Sets the options Full Page Screenshot value
174174
@@ -184,7 +184,7 @@ def ignore_protected_mode_settings(self) -> bool:
184184 return self ._options .get (self .IGNORE_PROTECTED_MODE_SETTINGS )
185185
186186 @ignore_protected_mode_settings .setter
187- def ignore_protected_mode_settings (self , value : bool ):
187+ def ignore_protected_mode_settings (self , value : bool ) -> None :
188188 """
189189 Sets the options Ignore Protected Mode Settings value
190190
@@ -200,7 +200,7 @@ def ignore_zoom_level(self) -> bool:
200200 return self ._options .get (self .IGNORE_ZOOM_LEVEL )
201201
202202 @ignore_zoom_level .setter
203- def ignore_zoom_level (self , value : bool ):
203+ def ignore_zoom_level (self , value : bool ) -> None :
204204 """
205205 Sets the options Ignore Zoom Level value
206206
@@ -216,7 +216,7 @@ def initial_browser_url(self) -> str:
216216 return self ._options .get (self .INITIAL_BROWSER_URL )
217217
218218 @initial_browser_url .setter
219- def initial_browser_url (self , value : str ):
219+ def initial_browser_url (self , value : str ) -> None :
220220 """
221221 Sets the options Initial Browser Url value
222222
@@ -232,7 +232,7 @@ def native_events(self) -> bool:
232232 return self ._options .get (self .NATIVE_EVENTS )
233233
234234 @native_events .setter
235- def native_events (self , value : bool ):
235+ def native_events (self , value : bool ) -> None :
236236 """
237237 Sets the options Native Events value
238238
@@ -248,7 +248,7 @@ def persistent_hover(self) -> bool:
248248 return self ._options .get (self .PERSISTENT_HOVER )
249249
250250 @persistent_hover .setter
251- def persistent_hover (self , value : bool ):
251+ def persistent_hover (self , value : bool ) -> None :
252252 """
253253 Sets the options Persistent Hover value
254254
@@ -264,7 +264,7 @@ def require_window_focus(self: bool):
264264 return self ._options .get (self .REQUIRE_WINDOW_FOCUS )
265265
266266 @require_window_focus .setter
267- def require_window_focus (self , value : bool ):
267+ def require_window_focus (self , value : bool ) -> None :
268268 """
269269 Sets the options Require Window Focus value
270270
@@ -280,7 +280,7 @@ def use_per_process_proxy(self) -> bool:
280280 return self ._options .get (self .USE_PER_PROCESS_PROXY )
281281
282282 @use_per_process_proxy .setter
283- def use_per_process_proxy (self , value : bool ):
283+ def use_per_process_proxy (self , value : bool ) -> None :
284284 """
285285 Sets the options User Per Process Proxy value
286286
@@ -296,7 +296,7 @@ def use_legacy_file_upload_dialog_handling(self) -> bool:
296296 return self ._options .get (self .USE_LEGACY_FILE_UPLOAD_DIALOG_HANDLING )
297297
298298 @use_legacy_file_upload_dialog_handling .setter
299- def use_legacy_file_upload_dialog_handling (self , value : bool ):
299+ def use_legacy_file_upload_dialog_handling (self , value : bool ) -> None :
300300 """
301301 Sets the options Use Legacy File Upload Dialog Handling value
302302
@@ -312,7 +312,7 @@ def attach_to_edge_chrome(self) -> bool:
312312 return self ._options .get (self .ATTACH_TO_EDGE_CHROME )
313313
314314 @attach_to_edge_chrome .setter
315- def attach_to_edge_chrome (self , value : bool ):
315+ def attach_to_edge_chrome (self , value : bool ) -> None :
316316 """
317317 Sets the options Attach to Edge Chrome value
318318
@@ -328,7 +328,7 @@ def edge_executable_path(self) -> str:
328328 return self ._options .get (self .EDGE_EXECUTABLE_PATH )
329329
330330 @edge_executable_path .setter
331- def edge_executable_path (self , value : str ):
331+ def edge_executable_path (self , value : str ) -> None :
332332 """
333333 Sets the options Initial Browser Url value
334334
0 commit comments