A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/seleniumhq/selenium/commit/878feb7fcfd9758d90c03590486816255b10a73f below:

Sweeping typing improvements for all property setters · SeleniumHQ/selenium@878feb7 · GitHub

@@ -66,7 +66,7 @@ def browser_attach_timeout(self) -> int:

66 66

return self._options.get(self.BROWSER_ATTACH_TIMEOUT)

67 67 68 68

@browser_attach_timeout.setter

69 -

def browser_attach_timeout(self, value: int):

69 +

def browser_attach_timeout(self, value: int) -> None:

70 70

"""

71 71

Sets the options Browser Attach Timeout

72 72

@@ -84,7 +84,7 @@ def element_scroll_behavior(self) -> ElementScrollBehavior:

84 84

return self._options.get(self.ELEMENT_SCROLL_BEHAVIOR)

85 85 86 86

@element_scroll_behavior.setter

87 -

def element_scroll_behavior(self, value: ElementScrollBehavior):

87 +

def element_scroll_behavior(self, value: ElementScrollBehavior) -> None:

88 88

"""

89 89

Sets the options Element Scroll Behavior

90 90

@@ -102,7 +102,7 @@ def ensure_clean_session(self) -> bool:

102 102

return self._options.get(self.ENSURE_CLEAN_SESSION)

103 103 104 104

@ensure_clean_session.setter

105 -

def ensure_clean_session(self, value: bool):

105 +

def ensure_clean_session(self, value: bool) -> None:

106 106

"""

107 107

Sets the options Ensure Clean Session value

108 108

@@ -118,7 +118,7 @@ def file_upload_dialog_timeout(self) -> int:

118 118

return self._options.get(self.FILE_UPLOAD_DIALOG_TIMEOUT)

119 119 120 120

@file_upload_dialog_timeout.setter

121 -

def file_upload_dialog_timeout(self, value: int):

121 +

def file_upload_dialog_timeout(self, value: int) -> None:

122 122

"""

123 123

Sets the options File Upload Dialog Timeout value

124 124

@@ -136,7 +136,7 @@ def force_create_process_api(self) -> bool:

136 136

return self._options.get(self.FORCE_CREATE_PROCESS_API)

137 137 138 138

@force_create_process_api.setter

139 -

def force_create_process_api(self, value: bool):

139 +

def force_create_process_api(self, value: bool) -> None:

140 140

"""

141 141

Sets the options Force Create Process Api value

142 142

@@ -152,7 +152,7 @@ def force_shell_windows_api(self) -> bool:

152 152

return self._options.get(self.FORCE_SHELL_WINDOWS_API)

153 153 154 154

@force_shell_windows_api.setter

155 -

def force_shell_windows_api(self, value: bool):

155 +

def force_shell_windows_api(self, value: bool) -> None:

156 156

"""

157 157

Sets the options Force Shell Windows Api value

158 158

@@ -168,7 +168,7 @@ def full_page_screenshot(self) -> bool:

168 168

return self._options.get(self.FULL_PAGE_SCREENSHOT)

169 169 170 170

@full_page_screenshot.setter

171 -

def full_page_screenshot(self, value: bool):

171 +

def full_page_screenshot(self, value: bool) -> None:

172 172

"""

173 173

Sets the options Full Page Screenshot value

174 174

@@ -184,7 +184,7 @@ def ignore_protected_mode_settings(self) -> bool:

184 184

return self._options.get(self.IGNORE_PROTECTED_MODE_SETTINGS)

185 185 186 186

@ignore_protected_mode_settings.setter

187 -

def ignore_protected_mode_settings(self, value: bool):

187 +

def ignore_protected_mode_settings(self, value: bool) -> None:

188 188

"""

189 189

Sets the options Ignore Protected Mode Settings value

190 190

@@ -200,7 +200,7 @@ def ignore_zoom_level(self) -> bool:

200 200

return self._options.get(self.IGNORE_ZOOM_LEVEL)

201 201 202 202

@ignore_zoom_level.setter

203 -

def ignore_zoom_level(self, value: bool):

203 +

def ignore_zoom_level(self, value: bool) -> None:

204 204

"""

205 205

Sets the options Ignore Zoom Level value

206 206

@@ -216,7 +216,7 @@ def initial_browser_url(self) -> str:

216 216

return self._options.get(self.INITIAL_BROWSER_URL)

217 217 218 218

@initial_browser_url.setter

219 -

def initial_browser_url(self, value: str):

219 +

def initial_browser_url(self, value: str) -> None:

220 220

"""

221 221

Sets the options Initial Browser Url value

222 222

@@ -232,7 +232,7 @@ def native_events(self) -> bool:

232 232

return self._options.get(self.NATIVE_EVENTS)

233 233 234 234

@native_events.setter

235 -

def native_events(self, value: bool):

235 +

def native_events(self, value: bool) -> None:

236 236

"""

237 237

Sets the options Native Events value

238 238

@@ -248,7 +248,7 @@ def persistent_hover(self) -> bool:

248 248

return self._options.get(self.PERSISTENT_HOVER)

249 249 250 250

@persistent_hover.setter

251 -

def persistent_hover(self, value: bool):

251 +

def persistent_hover(self, value: bool) -> None:

252 252

"""

253 253

Sets the options Persistent Hover value

254 254

@@ -264,7 +264,7 @@ def require_window_focus(self: bool):

264 264

return self._options.get(self.REQUIRE_WINDOW_FOCUS)

265 265 266 266

@require_window_focus.setter

267 -

def require_window_focus(self, value: bool):

267 +

def require_window_focus(self, value: bool) -> None:

268 268

"""

269 269

Sets the options Require Window Focus value

270 270

@@ -280,7 +280,7 @@ def use_per_process_proxy(self) -> bool:

280 280

return self._options.get(self.USE_PER_PROCESS_PROXY)

281 281 282 282

@use_per_process_proxy.setter

283 -

def use_per_process_proxy(self, value: bool):

283 +

def use_per_process_proxy(self, value: bool) -> None:

284 284

"""

285 285

Sets the options User Per Process Proxy value

286 286

@@ -296,7 +296,7 @@ def use_legacy_file_upload_dialog_handling(self) -> bool:

296 296

return self._options.get(self.USE_LEGACY_FILE_UPLOAD_DIALOG_HANDLING)

297 297 298 298

@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:

300 300

"""

301 301

Sets the options Use Legacy File Upload Dialog Handling value

302 302

@@ -312,7 +312,7 @@ def attach_to_edge_chrome(self) -> bool:

312 312

return self._options.get(self.ATTACH_TO_EDGE_CHROME)

313 313 314 314

@attach_to_edge_chrome.setter

315 -

def attach_to_edge_chrome(self, value: bool):

315 +

def attach_to_edge_chrome(self, value: bool) -> None:

316 316

"""

317 317

Sets the options Attach to Edge Chrome value

318 318

@@ -328,7 +328,7 @@ def edge_executable_path(self) -> str:

328 328

return self._options.get(self.EDGE_EXECUTABLE_PATH)

329 329 330 330

@edge_executable_path.setter

331 -

def edge_executable_path(self, value: str):

331 +

def edge_executable_path(self, value: str) -> None:

332 332

"""

333 333

Sets the options Initial Browser Url value

334 334

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4