We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ignore_proxy
ChromiumRemoteconnection
1 parent fb6ef09 commit d90f7baCopy full SHA for d90f7ba
py/selenium/webdriver/chromium/remote_connection.py
@@ -14,7 +14,6 @@
14
# KIND, either express or implied. See the License for the
15
# specific language governing permissions and limitations
16
# under the License.
17
-import typing
18
19
from selenium.webdriver.remote.remote_connection import RemoteConnection
20
@@ -26,7 +25,7 @@ def __init__(
26
25
vendor_prefix: str,
27
browser_name: str,
28
keep_alive: bool = True,
29
- ignore_proxy: typing.Optional[bool] = False,
+ ignore_proxy: bool = False,
30
) -> None:
31
super().__init__(remote_server_addr, keep_alive, ignore_proxy=ignore_proxy)
32
self.browser_name = browser_name
0 commit comments