File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
py/selenium/webdriver/common Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change 1515# specific language governing permissions and limitations
1616# under the License.
1717import typing
18- import warnings
1918from abc import ABCMeta
2019from abc import abstractmethod
2120from enum import Enum
2221
23- from typing_extensions import deprecated
24-
2522from selenium .common .exceptions import InvalidArgumentException
2623from selenium .webdriver .common .proxy import Proxy
2724
@@ -437,16 +434,9 @@ def add_argument(self, argument) -> None:
437434 else :
438435 raise ValueError ("argument can not be null" )
439436
440- @deprecated ("Ignore local proxy in ArgOptions is deprecated, use it from BaseOptions" )
441437 def ignore_local_proxy_environment_variables (self ) -> None :
442438 """By calling this you will ignore HTTP_PROXY and HTTPS_PROXY from
443439 being picked up and used."""
444- warnings .warn (
445- "using ignore_local_proxy_environment_variables in ArgOptions has been deprecated, "
446- "instead, use it from BaseOptions" ,
447- DeprecationWarning ,
448- stacklevel = 2 ,
449- )
450440 super ()._ignore_local_proxy = True
451441
452442 def to_capabilities (self ):
You can’t perform that action at this time.
0 commit comments