File tree Expand file tree Collapse file tree 2 files changed +0
-33
lines changed
test/unit/selenium/webdriver/edge Expand file tree Collapse file tree 2 files changed +0
-33
lines changed Original file line number Diff line number Diff line change 15
15
# specific language governing permissions and limitations
16
16
# under the License.
17
17
import typing
18
- import warnings
19
18
20
19
from selenium .types import SubprocessStdAlias
21
20
from selenium .webdriver .chromium import service
@@ -38,22 +37,13 @@ def __init__(
38
37
self ,
39
38
executable_path : str = None ,
40
39
port : int = 0 ,
41
- verbose : bool = False ,
42
40
log_output : SubprocessStdAlias = None ,
43
41
service_args : typing .Optional [typing .List [str ]] = None ,
44
42
env : typing .Optional [typing .Mapping [str , str ]] = None ,
45
43
** kwargs ,
46
44
) -> None :
47
45
self .service_args = service_args or []
48
46
49
- if verbose :
50
- warnings .warn (
51
- "verbose=True is deprecated. Use `service_args=['--verbose', ...]` instead." ,
52
- DeprecationWarning ,
53
- stacklevel = 2 ,
54
- )
55
- self .service_args .append ("--verbose" )
56
-
57
47
super ().__init__ (
58
48
executable_path = executable_path ,
59
49
port = port ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments