There was an error while loading. Please reload this page.
1 parent 7968096 commit 656c55fCopy full SHA for 656c55f
1 file changed
py/test/selenium/webdriver/common/network.py
@@ -39,6 +39,9 @@ def _bytes(value, encoding):
39
40
41
def get_lan_ip():
42
+ if os.environ.get('CI') == 'true':
43
+ return '0.0.0.0'
44
+
45
try:
46
ip = socket.gethostbyname(socket.gethostname())
47
except Exception:
0 commit comments