@@ -88,9 +88,7 @@ def __set__(self, obj, value):
88
88
if value in ("normal" , "eager" , "none" ):
89
89
obj .set_capability (self .name , value )
90
90
else :
91
- raise ValueError (
92
- "Strategy can only be one of the following: normal, eager, none"
93
- )
91
+ raise ValueError ("Strategy can only be one of the following: normal, eager, none" )
94
92
95
93
96
94
class _UnHandledPromptBehaviorDescriptor :
@@ -144,9 +142,7 @@ def __set__(self, obj, value):
144
142
if all (x in ("implicit" , "pageLoad" , "script" ) for x in value .keys ()):
145
143
obj .set_capability (self .name , value )
146
144
else :
147
- raise ValueError (
148
- "Timeout keys can only be one of the following: implicit, pageLoad, script"
149
- )
145
+ raise ValueError ("Timeout keys can only be one of the following: implicit, pageLoad, script" )
150
146
151
147
152
148
class _ProxyDescriptor :
@@ -160,9 +156,7 @@ def __get__(self, obj, cls):
160
156
161
157
def __set__ (self , obj , value ):
162
158
if not isinstance (value , Proxy ):
163
- raise InvalidArgumentException (
164
- "Only Proxy objects can be passed in."
165
- )
159
+ raise InvalidArgumentException ("Only Proxy objects can be passed in." )
166
160
obj ._proxy = value
167
161
obj ._caps [self .name ] = value .to_capabilities ()
168
162
@@ -236,9 +230,7 @@ class BaseOptions(metaclass=ABCMeta):
236
230
- `None`
237
231
"""
238
232
239
- strict_file_interactability = _BaseOptionsDescriptor (
240
- "strictFileInteractability"
241
- )
233
+ strict_file_interactability = _BaseOptionsDescriptor ("strictFileInteractability" )
242
234
"""Gets and Sets whether session is about file interactability.
243
235
244
236
Usage
@@ -348,9 +340,7 @@ class BaseOptions(metaclass=ABCMeta):
348
340
- `None`
349
341
"""
350
342
351
- unhandled_prompt_behavior = _UnHandledPromptBehaviorDescriptor (
352
- "unhandledPromptBehavior"
353
- )
343
+ unhandled_prompt_behavior = _UnHandledPromptBehaviorDescriptor ("unhandledPromptBehavior" )
354
344
""":Gets and Sets unhandled prompt behavior, the default is "dismiss and
355
345
notify".
356
346
0 commit comments