При запуске теста в GitHub Actions выдает ошибку. Не могу понять, в чем проблема. Нужна помощь.

При прохождении шага с запуском теста GitHub Actions выдает ошибку. В чем может быть проблема?

Вот мой тест
import time
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities

driver = webdriver.Remote(
    command_executor='http://127.0.0.1:4444/wd/hub',
    desired_capabilities=DesiredCapabilities.CHROME
)


def test_title():
    driver.get('https://www.google.com/')
    assert "Google" in driver.title


time.sleep(10)
driver.quit()
Workflow
name: Tests

on: [push]

jobs:

  run-tests:

    runs-on: ubuntu-18.04

    steps:

    - name: Install Python

      uses: actions/setup-python@v2

      with:

        python-version: '3.x'

        architecture: 'x64'

    - name: Install Dependencies

      run: |

        python -m pip install -U pip

        pip install -U pytest selenium flake8 pylint

    - name: Check out and download repository

      uses: actions/checkout@v2

    - name: Check code

      run: |

        flake8 --exit-zero test.py

        pylint --errors-only test.py

    - name: Start Selenoid

      run: |

        wget --no-check-certificate -O cm https://github.com/aerokube/cm/releases/latest/download/cm_linux_amd64

        chmod +x cm

        ./cm selenoid start --args "-timeout 300s"

        curl http://localhost:4444/status

    - name: Run tests

      run: |

        pytest test.py

        continue-on-error: true
Ошибка
Run pytest test.py
  pytest test.py
  continue-on-error: true
  shell: /bin/bash -e {0}
  env:
    pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
    LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
============================= test session starts ==============================
platform linux -- Python 3.9.1, pytest-6.2.1, py-1.10.0, pluggy-0.13.1
rootdir: /home/runner/work/website-testing-test/website-testing-test
collected 1 item
 
test.py F                                                                [100%]
 
=================================== FAILURES ===================================
__________________________________ test_title __________________________________
 
    def test_title():
>       driver.get('https://www.google.com/')
 
test.py:12: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py:333: in get
    self.execute(Command.GET, {'url': url})
/opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py:321: in execute
    self.error_handler.check_response(response)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x7fe572911070>
response = {'status': 404, 'value': '{"status":13,"value":{"message":"Session timed out or not found"}}\n'}
 
    def check_response(self, response):
        """
        Checks that a JSON response from the WebDriver does not have an error.
    
        :Args:
         - response - The JSON response from the WebDriver server as a dictionary
           object.
    
        :Raises: If the response contains an error message.
        """
        status = response.get('status', None)
        if status is None or status == ErrorCode.SUCCESS:
            return
        value = None
        message = response.get("message", "")
        screen = response.get("screen", "")
        stacktrace = None
        if isinstance(status, int):
            value_json = response.get('value', None)
            if value_json and isinstance(value_json, basestring):
                import json
                try:
                    value = json.loads(value_json)
                    if len(value.keys()) == 1:
                        value = value['value']
                    status = value.get('error', None)
                    if status is None:
                        status = value["status"]
                        message = value["value"]
                        if not isinstance(message, basestring):
                            value = message
                            message = message.get('message')
                    else:
                        message = value.get('message', None)
                except ValueError:
                    pass
    
        exception_class = ErrorInResponseException
        if status in ErrorCode.NO_SUCH_ELEMENT:
            exception_class = NoSuchElementException
        elif status in ErrorCode.NO_SUCH_FRAME:
            exception_class = NoSuchFrameException
        elif status in ErrorCode.NO_SUCH_WINDOW:
            exception_class = NoSuchWindowException
        elif status in ErrorCode.STALE_ELEMENT_REFERENCE:
            exception_class = StaleElementReferenceException
        elif status in ErrorCode.ELEMENT_NOT_VISIBLE:
            exception_class = ElementNotVisibleException
        elif status in ErrorCode.INVALID_ELEMENT_STATE:
            exception_class = InvalidElementStateException
        elif status in ErrorCode.INVALID_SELECTOR \
                or status in ErrorCode.INVALID_XPATH_SELECTOR \
                or status in ErrorCode.INVALID_XPATH_SELECTOR_RETURN_TYPER:
            exception_class = InvalidSelectorException
        elif status in ErrorCode.ELEMENT_IS_NOT_SELECTABLE:
            exception_class = ElementNotSelectableException
        elif status in ErrorCode.ELEMENT_NOT_INTERACTABLE:
            exception_class = ElementNotInteractableException
        elif status in ErrorCode.INVALID_COOKIE_DOMAIN:
            exception_class = InvalidCookieDomainException
        elif status in ErrorCode.UNABLE_TO_SET_COOKIE:
            exception_class = UnableToSetCookieException
        elif status in ErrorCode.TIMEOUT:
            exception_class = TimeoutException
        elif status in ErrorCode.SCRIPT_TIMEOUT:
            exception_class = TimeoutException
        elif status in ErrorCode.UNKNOWN_ERROR:
            exception_class = WebDriverException
        elif status in ErrorCode.UNEXPECTED_ALERT_OPEN:
            exception_class = UnexpectedAlertPresentException
        elif status in ErrorCode.NO_ALERT_OPEN:
            exception_class = NoAlertPresentException
        elif status in ErrorCode.IME_NOT_AVAILABLE:
            exception_class = ImeNotAvailableException
        elif status in ErrorCode.IME_ENGINE_ACTIVATION_FAILED:
            exception_class = ImeActivationFailedException
        elif status in ErrorCode.MOVE_TARGET_OUT_OF_BOUNDS:
            exception_class = MoveTargetOutOfBoundsException
        elif status in ErrorCode.JAVASCRIPT_ERROR:
            exception_class = JavascriptException
        elif status in ErrorCode.SESSION_NOT_CREATED:
            exception_class = SessionNotCreatedException
        elif status in ErrorCode.INVALID_ARGUMENT:
            exception_class = InvalidArgumentException
        elif status in ErrorCode.NO_SUCH_COOKIE:
            exception_class = NoSuchCookieException
        elif status in ErrorCode.UNABLE_TO_CAPTURE_SCREEN:
            exception_class = ScreenshotException
        elif status in ErrorCode.ELEMENT_CLICK_INTERCEPTED:
            exception_class = ElementClickInterceptedException
        elif status in ErrorCode.INSECURE_CERTIFICATE:
            exception_class = InsecureCertificateException
        elif status in ErrorCode.INVALID_COORDINATES:
            exception_class = InvalidCoordinatesException
        elif status in ErrorCode.INVALID_SESSION_ID:
            exception_class = InvalidSessionIdException
        elif status in ErrorCode.UNKNOWN_METHOD:
            exception_class = UnknownMethodException
        else:
            exception_class = WebDriverException
        if value == '' or value is None:
            value = response['value']
        if isinstance(value, basestring):
            if exception_class == ErrorInResponseException:
                raise exception_class(response, value)
            raise exception_class(value)
        if message == "" and 'message' in value:
            message = value['message']
    
        screen = None
        if 'screen' in value:
            screen = value['screen']
    
        stacktrace = None
        if 'stackTrace' in value and value['stackTrace']:
            stacktrace = []
            try:
                for frame in value['stackTrace']:
                    line = self._value_or_default(frame, 'lineNumber', '')
                    file = self._value_or_default(frame, 'fileName', '<anonymous>')
                    if line:
                        file = "%s:%s" % (file, line)
                    meth = self._value_or_default(frame, 'methodName', '<anonymous>')
                    if 'className' in frame:
                        meth = "%s.%s" % (frame['className'], meth)
                    msg = "    at %s (%s)"
                    msg = msg % (meth, file)
                    stacktrace.append(msg)
            except TypeError:
                pass
        if exception_class == ErrorInResponseException:
            raise exception_class(response, message)
        elif exception_class == UnexpectedAlertPresentException:
            alert_text = None
            if 'data' in value:
                alert_text = value['data'].get('text')
            elif 'alert' in value:
                alert_text = value['alert'].get('text')
            raise exception_class(message, screen, stacktrace, alert_text)
>       raise exception_class(message, screen, stacktrace)
E       selenium.common.exceptions.WebDriverException: Message: Session timed out or not found
 
/opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/selenium/webdriver/remote/errorhandler.py:242: WebDriverException
=========================== short test summary info ============================
FAILED test.py::test_title - selenium.common.exceptions.WebDriverException: M...
============================== 1 failed in 11.72s ==============================
Error: Process completed with exit code 1.

Logs

1_run-tests (1)
2021-01-27T07:15:51.7614851Z ##[section]Starting: Prepare job run-tests
2021-01-27T07:15:51.7619066Z Evaluating strategy
2021-01-27T07:15:51.7619305Z Creating job '__default'
2021-01-27T07:15:51.7621155Z Evaluating timeout
2021-01-27T07:15:51.7621261Z Evaluating cancel timeout
2021-01-27T07:15:51.7621355Z Evaluating continue on error
2021-01-27T07:15:51.7621473Z Evaluating target
2021-01-27T07:15:51.7723193Z ##[section]Finishing: Prepare job run-tests
1_run-tests(2)
2021-01-27T07:15:52.0055074Z ##[section]Starting: Request a runner to run this job
2021-01-27T07:15:52.4433144Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-18.04'
2021-01-27T07:15:52.4433231Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-18.04'
2021-01-27T07:15:52.4433561Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-18.04'
2021-01-27T07:15:52.7540516Z ##[section]Finishing: Request a runner to run this job
2021-01-27T07:16:01.7022802Z Current runner version: '2.276.1'
2021-01-27T07:16:01.7110367Z ##[group]Operating System
2021-01-27T07:16:01.7111407Z Ubuntu
2021-01-27T07:16:01.7111905Z 18.04.5
2021-01-27T07:16:01.7112354Z LTS
2021-01-27T07:16:01.7112898Z ##[endgroup]
2021-01-27T07:16:01.7113488Z ##[group]Virtual Environment
2021-01-27T07:16:01.7114207Z Environment: ubuntu-18.04
2021-01-27T07:16:01.7114808Z Version: 20201210.0
2021-01-27T07:16:01.7115962Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu18/20201210.0/images/linux/Ubuntu1804-README.md
2021-01-27T07:16:01.7117017Z ##[endgroup]
2021-01-27T07:16:01.7121919Z Prepare workflow directory
2021-01-27T07:16:01.7886392Z Prepare all required actions
2021-01-27T07:16:01.7898175Z Getting action download info
2021-01-27T07:16:02.1811051Z Download action repository 'actions/setup-python@v2'
2021-01-27T07:16:04.4062791Z Download action repository 'actions/checkout@v2'
2021-01-27T07:16:05.0864456Z ##[group]Run actions/setup-python@v2
2021-01-27T07:16:05.0865220Z with:
2021-01-27T07:16:05.0865818Z   python-version: 3.x
2021-01-27T07:16:05.0866375Z   architecture: x64
2021-01-27T07:16:05.0867352Z   token: ***
2021-01-27T07:16:05.0867825Z ##[endgroup]
2021-01-27T07:16:06.7418222Z Successfully setup CPython (3.9.1)
2021-01-27T07:16:06.7608730Z ##[group]Run python -m pip install -U pip
2021-01-27T07:16:06.7609488Z e[36;1mpython -m pip install -U pipe[0m
2021-01-27T07:16:06.7610184Z e[36;1mpip install -U pytest selenium flake8 pylinte[0m
2021-01-27T07:16:06.7656215Z shell: /bin/bash -e {0}
2021-01-27T07:16:06.7656742Z env:
2021-01-27T07:16:06.7657412Z   pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
2021-01-27T07:16:06.7658292Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
2021-01-27T07:16:06.7658952Z ##[endgroup]
2021-01-27T07:16:08.8515336Z Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages (20.3.1)
2021-01-27T07:16:09.9946560Z Collecting pip
2021-01-27T07:16:10.0664223Z   Downloading pip-21.0-py3-none-any.whl (1.5 MB)
2021-01-27T07:16:10.3435681Z Installing collected packages: pip
2021-01-27T07:16:10.3436968Z   Attempting uninstall: pip
2021-01-27T07:16:10.3438043Z     Found existing installation: pip 20.3.1
2021-01-27T07:16:10.5003191Z     Uninstalling pip-20.3.1:
2021-01-27T07:16:10.5227541Z       Successfully uninstalled pip-20.3.1
2021-01-27T07:16:11.6564926Z Successfully installed pip-21.0
2021-01-27T07:16:12.7309432Z Collecting pytest
2021-01-27T07:16:12.8026222Z   Downloading pytest-6.2.2-py3-none-any.whl (280 kB)
2021-01-27T07:16:13.0070600Z Collecting selenium
2021-01-27T07:16:13.0275756Z   Downloading selenium-3.141.0-py2.py3-none-any.whl (904 kB)
2021-01-27T07:16:13.3043453Z Collecting flake8
2021-01-27T07:16:13.3234835Z   Downloading flake8-3.8.4-py2.py3-none-any.whl (72 kB)
2021-01-27T07:16:13.5338849Z Collecting pylint
2021-01-27T07:16:13.5533284Z   Downloading pylint-2.6.0-py3-none-any.whl (325 kB)
2021-01-27T07:16:13.6512906Z Collecting pyflakes<2.3.0,>=2.2.0
2021-01-27T07:16:13.6687812Z   Downloading pyflakes-2.2.0-py2.py3-none-any.whl (66 kB)
2021-01-27T07:16:13.7158086Z Collecting pycodestyle<2.7.0,>=2.6.0a1
2021-01-27T07:16:13.7389040Z   Downloading pycodestyle-2.6.0-py2.py3-none-any.whl (41 kB)
2021-01-27T07:16:13.7822191Z Collecting mccabe<0.7.0,>=0.6.0
2021-01-27T07:16:13.8000715Z   Downloading mccabe-0.6.1-py2.py3-none-any.whl (8.6 kB)
2021-01-27T07:16:13.8952580Z Collecting astroid<=2.5,>=2.4.0
2021-01-27T07:16:13.9134122Z   Downloading astroid-2.4.2-py3-none-any.whl (213 kB)
2021-01-27T07:16:14.1418357Z Collecting isort<6,>=4.2.5
2021-01-27T07:16:14.1597692Z   Downloading isort-5.7.0-py3-none-any.whl (104 kB)
2021-01-27T07:16:14.2103756Z Collecting toml>=0.7.1
2021-01-27T07:16:14.2279500Z   Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB)
2021-01-27T07:16:14.2736843Z Collecting wrapt~=1.11
2021-01-27T07:16:14.2974677Z   Downloading wrapt-1.12.1.tar.gz (27 kB)
2021-01-27T07:16:15.5183839Z Collecting lazy-object-proxy==1.4.*
2021-01-27T07:16:15.5364529Z   Downloading lazy-object-proxy-1.4.3.tar.gz (34 kB)
2021-01-27T07:16:15.5548248Z   Installing build dependencies: started
2021-01-27T07:16:17.8008536Z   Installing build dependencies: finished with status 'done'
2021-01-27T07:16:17.8078010Z   Getting requirements to build wheel: started
2021-01-27T07:16:17.9829770Z   Getting requirements to build wheel: finished with status 'done'
2021-01-27T07:16:17.9866273Z     Preparing wheel metadata: started
2021-01-27T07:16:19.3455206Z     Preparing wheel metadata: finished with status 'done'
2021-01-27T07:16:19.4057906Z Collecting six~=1.12
2021-01-27T07:16:19.4240153Z   Downloading six-1.15.0-py2.py3-none-any.whl (10 kB)
2021-01-27T07:16:19.5271667Z Collecting attrs>=19.2.0
2021-01-27T07:16:19.5451258Z   Downloading attrs-20.3.0-py2.py3-none-any.whl (49 kB)
2021-01-27T07:16:19.6594976Z Collecting packaging
2021-01-27T07:16:19.6770779Z   Downloading packaging-20.8-py2.py3-none-any.whl (39 kB)
2021-01-27T07:16:19.7175741Z Collecting iniconfig
2021-01-27T07:16:19.7350617Z   Downloading iniconfig-1.1.1-py2.py3-none-any.whl (5.0 kB)
2021-01-27T07:16:19.7883827Z Collecting pluggy<1.0.0a1,>=0.12
2021-01-27T07:16:19.8074385Z   Downloading pluggy-0.13.1-py2.py3-none-any.whl (18 kB)
2021-01-27T07:16:19.8713507Z Collecting py>=1.8.2
2021-01-27T07:16:19.8939764Z   Downloading py-1.10.0-py2.py3-none-any.whl (97 kB)
2021-01-27T07:16:20.0912789Z Collecting urllib3
2021-01-27T07:16:20.1092150Z   Downloading urllib3-1.26.3-py2.py3-none-any.whl (137 kB)
2021-01-27T07:16:20.2652849Z Collecting pyparsing>=2.0.2
2021-01-27T07:16:20.2831171Z   Downloading pyparsing-2.4.7-py2.py3-none-any.whl (67 kB)
2021-01-27T07:16:20.3229430Z Using legacy 'setup.py install' for wrapt, since package 'wheel' is not installed.
2021-01-27T07:16:20.3231413Z Building wheels for collected packages: lazy-object-proxy
2021-01-27T07:16:20.3251210Z   Building wheel for lazy-object-proxy (PEP 517): started
2021-01-27T07:16:23.6372137Z   Building wheel for lazy-object-proxy (PEP 517): finished with status 'done'
2021-01-27T07:16:23.6392240Z   Created wheel for lazy-object-proxy: filename=lazy_object_proxy-1.4.3-cp39-cp39-linux_x86_64.whl size=52847 sha256=4b75b1ec93ce69dbbd80f25ecd8d22b89e710c0c31a18cb5f6abb3d0f41b65d7
2021-01-27T07:16:23.6400523Z   Stored in directory: /home/runner/.cache/pip/wheels/41/20/07/2a3e02cdfc8b442404202f6ef99ff1b1c16b73910968a46f2f
2021-01-27T07:16:23.6425678Z Successfully built lazy-object-proxy
2021-01-27T07:16:23.7607522Z Installing collected packages: wrapt, six, pyparsing, lazy-object-proxy, urllib3, toml, pyflakes, pycodestyle, py, pluggy, packaging, mccabe, isort, iniconfig, attrs, astroid, selenium, pytest, pylint, flake8
2021-01-27T07:16:23.7614982Z     Running setup.py install for wrapt: started
2021-01-27T07:16:24.8336402Z     Running setup.py install for wrapt: finished with status 'done'
2021-01-27T07:16:26.2905065Z Successfully installed astroid-2.4.2 attrs-20.3.0 flake8-3.8.4 iniconfig-1.1.1 isort-5.7.0 lazy-object-proxy-1.4.3 mccabe-0.6.1 packaging-20.8 pluggy-0.13.1 py-1.10.0 pycodestyle-2.6.0 pyflakes-2.2.0 pylint-2.6.0 pyparsing-2.4.7 pytest-6.2.2 selenium-3.141.0 six-1.15.0 toml-0.10.2 urllib3-1.26.3 wrapt-1.12.1
2021-01-27T07:16:26.3976092Z ##[group]Run actions/checkout@v2
2021-01-27T07:16:26.3976606Z with:
2021-01-27T07:16:26.3977167Z   repository: amegafx/website-testing-test
2021-01-27T07:16:26.3978194Z   token: ***
2021-01-27T07:16:26.3978596Z   ssh-strict: true
2021-01-27T07:16:26.3979128Z   persist-credentials: true
2021-01-27T07:16:26.3980323Z   clean: true
2021-01-27T07:16:26.3980740Z   fetch-depth: 1
2021-01-27T07:16:26.3981139Z   lfs: false
2021-01-27T07:16:26.3981554Z   submodules: false
2021-01-27T07:16:26.3981941Z env:
2021-01-27T07:16:26.3982500Z   pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
2021-01-27T07:16:26.3983274Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
2021-01-27T07:16:26.3983839Z ##[endgroup]
2021-01-27T07:16:26.6461200Z Syncing repository: amegafx/website-testing-test
2021-01-27T07:16:26.6506133Z ##[group]Getting Git version info
2021-01-27T07:16:26.6508375Z Working directory is '/home/runner/work/website-testing-test/website-testing-test'
2021-01-27T07:16:26.6586070Z [command]/usr/bin/git version
2021-01-27T07:16:26.6635054Z git version 2.29.2
2021-01-27T07:16:26.6657698Z ##[endgroup]
2021-01-27T07:16:26.6665055Z Deleting the contents of '/home/runner/work/website-testing-test/website-testing-test'
2021-01-27T07:16:26.6669383Z ##[group]Initializing the repository
2021-01-27T07:16:26.6674076Z [command]/usr/bin/git init /home/runner/work/website-testing-test/website-testing-test
2021-01-27T07:16:26.7640691Z Initialized empty Git repository in /home/runner/work/website-testing-test/website-testing-test/.git/
2021-01-27T07:16:26.7651918Z [command]/usr/bin/git remote add origin https://github.com/amegafx/website-testing-test
2021-01-27T07:16:26.7707620Z ##[endgroup]
2021-01-27T07:16:26.7708408Z ##[group]Disabling automatic garbage collection
2021-01-27T07:16:26.7714043Z [command]/usr/bin/git config --local gc.auto 0
2021-01-27T07:16:26.7805846Z ##[endgroup]
2021-01-27T07:16:26.7811288Z ##[group]Setting up auth
2021-01-27T07:16:26.7818389Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-01-27T07:16:26.7861267Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-01-27T07:16:27.0079822Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-01-27T07:16:27.0142878Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2021-01-27T07:16:27.0421819Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2021-01-27T07:16:27.0571628Z ##[endgroup]
2021-01-27T07:16:27.0572803Z ##[group]Fetching the repository
2021-01-27T07:16:27.0584824Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +d7700f295df06dc5119b535878dfd9fbc8813d56:refs/remotes/origin/main
2021-01-27T07:16:27.6823189Z remote: Enumerating objects: 8, done.        
2021-01-27T07:16:27.6826748Z remote: Counting objects:  12% (1/8)        
2021-01-27T07:16:27.6827546Z remote: Counting objects:  25% (2/8)        
2021-01-27T07:16:27.6828306Z remote: Counting objects:  37% (3/8)        
2021-01-27T07:16:27.6829043Z remote: Counting objects:  50% (4/8)        
2021-01-27T07:16:27.6829797Z remote: Counting objects:  62% (5/8)        
2021-01-27T07:16:27.6830531Z remote: Counting objects:  75% (6/8)        
2021-01-27T07:16:27.6831265Z remote: Counting objects:  87% (7/8)        
2021-01-27T07:16:27.6832015Z remote: Counting objects: 100% (8/8)        
2021-01-27T07:16:27.6832780Z remote: Counting objects: 100% (8/8), done.        
2021-01-27T07:16:27.6833595Z remote: Compressing objects:  16% (1/6)        
2021-01-27T07:16:27.6834423Z remote: Compressing objects:  33% (2/6)        
2021-01-27T07:16:27.6835725Z remote: Compressing objects:  50% (3/6)        
2021-01-27T07:16:27.6836360Z remote: Compressing objects:  66% (4/6)        
2021-01-27T07:16:27.6836956Z remote: Compressing objects:  83% (5/6)        
2021-01-27T07:16:27.6837531Z remote: Compressing objects: 100% (6/6)        
2021-01-27T07:16:27.6838163Z remote: Compressing objects: 100% (6/6), done.        
2021-01-27T07:16:27.6941425Z remote: Total 8 (delta 0), reused 7 (delta 0), pack-reused 0        
2021-01-27T07:16:27.7547310Z From https://github.com/amegafx/website-testing-test
2021-01-27T07:16:27.7548884Z  * [new ref]         d7700f295df06dc5119b535878dfd9fbc8813d56 -> origin/main
2021-01-27T07:16:27.7666071Z ##[endgroup]
2021-01-27T07:16:27.7667153Z ##[group]Determining the checkout info
2021-01-27T07:16:27.7668810Z ##[endgroup]
2021-01-27T07:16:27.7669547Z ##[group]Checking out the ref
2021-01-27T07:16:27.7671551Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main
2021-01-27T07:16:27.7801211Z Switched to a new branch 'main'
2021-01-27T07:16:27.7863998Z Branch 'main' set up to track remote branch 'main' from 'origin'.
2021-01-27T07:16:27.7881102Z ##[endgroup]
2021-01-27T07:16:27.7989214Z [command]/usr/bin/git log -1 --format='%H'
2021-01-27T07:16:27.8024255Z 'd7700f295df06dc5119b535878dfd9fbc8813d56'
2021-01-27T07:16:27.8123439Z ##[group]Run flake8 --exit-zero test.py
2021-01-27T07:16:27.8124121Z e[36;1mflake8 --exit-zero test.pye[0m
2021-01-27T07:16:27.8124704Z e[36;1mpylint --errors-only test.pye[0m
2021-01-27T07:16:27.8166522Z shell: /bin/bash -e {0}
2021-01-27T07:16:27.8166935Z env:
2021-01-27T07:16:27.8167509Z   pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
2021-01-27T07:16:27.8168293Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
2021-01-27T07:16:27.8168866Z ##[endgroup]
2021-01-27T07:16:29.5084998Z ##[group]Run wget --no-check-certificate -O cm https://github.com/aerokube/cm/releases/latest/download/cm_linux_amd64
2021-01-27T07:16:29.5086566Z e[36;1mwget --no-check-certificate -O cm https://github.com/aerokube/cm/releases/latest/download/cm_linux_amd64e[0m
2021-01-27T07:16:29.5087473Z e[36;1mchmod +x cme[0m
2021-01-27T07:16:29.5088086Z e[36;1m./cm selenoid start --args "-timeout 300s"e[0m
2021-01-27T07:16:29.5088797Z e[36;1mcurl http://localhost:4444/statuse[0m
2021-01-27T07:16:29.5169835Z shell: /bin/bash -e {0}
2021-01-27T07:16:29.5170652Z env:
2021-01-27T07:16:29.5171918Z   pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
2021-01-27T07:16:29.5173470Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
2021-01-27T07:16:29.5174793Z ##[endgroup]
2021-01-27T07:16:29.5353890Z --2021-01-27 07:16:29--  https://github.com/aerokube/cm/releases/latest/download/cm_linux_amd64
2021-01-27T07:16:29.5379878Z Resolving github.com (github.com)... 140.82.113.3
2021-01-27T07:16:29.5729419Z Connecting to github.com (github.com)|140.82.113.3|:443... connected.
2021-01-27T07:16:29.7247108Z HTTP request sent, awaiting response... 302 Found
2021-01-27T07:16:29.7418900Z Location: https://github.com/aerokube/cm/releases/download/1.7.2/cm_linux_amd64 [following]
2021-01-27T07:16:29.7422282Z --2021-01-27 07:16:29--  https://github.com/aerokube/cm/releases/download/1.7.2/cm_linux_amd64
2021-01-27T07:16:29.7424039Z Reusing existing connection to github.com:443.
2021-01-27T07:16:29.7852368Z HTTP request sent, awaiting response... 302 Found
2021-01-27T07:16:29.7861976Z Location: https://github-production-release-asset-2e65be.s3.amazonaws.com/88080929/39161580-c104-11ea-8890-d0d755774c6a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210127%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210127T071435Z&X-Amz-Expires=300&X-Amz-Signature=0666aea98a565bc1935016d8856cc415da29e0514bc4c2ff74a0b623b9500b99&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=88080929&response-content-disposition=attachment%3B%20filename%3Dcm_linux_amd64&response-content-type=application%2Foctet-stream [following]
2021-01-27T07:16:29.7877457Z --2021-01-27 07:16:29--  https://github-production-release-asset-2e65be.s3.amazonaws.com/88080929/39161580-c104-11ea-8890-d0d755774c6a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210127%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210127T071435Z&X-Amz-Expires=300&X-Amz-Signature=0666aea98a565bc1935016d8856cc415da29e0514bc4c2ff74a0b623b9500b99&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=88080929&response-content-disposition=attachment%3B%20filename%3Dcm_linux_amd64&response-content-type=application%2Foctet-stream
2021-01-27T07:16:29.8224627Z Resolving github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)... 52.217.4.12
2021-01-27T07:16:29.8627461Z Connecting to github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)|52.217.4.12|:443... connected.
2021-01-27T07:16:30.0000266Z HTTP request sent, awaiting response... 200 OK
2021-01-27T07:16:30.0001868Z Length: 12701696 (12M) [application/octet-stream]
2021-01-27T07:16:30.0073414Z Saving to: ‘cm’
2021-01-27T07:16:30.0073881Z 
2021-01-27T07:16:30.0800893Z      0K .......... .......... .......... .......... ..........  0% 1.21M 10s
2021-01-27T07:16:30.0804977Z     50K .......... .......... .......... .......... ..........  0% 1.22M 10s
2021-01-27T07:16:30.1200851Z    100K .......... .......... .......... .......... ..........  1% 1.23M 10s
2021-01-27T07:16:30.1204406Z    150K .......... .......... .......... .......... ..........  1%  109M 7s
2021-01-27T07:16:30.1602544Z    200K .......... .......... .......... .......... ..........  2% 1.23M 8s
2021-01-27T07:16:30.1612270Z    250K .......... .......... .......... .......... ..........  2% 52.5M 7s
2021-01-27T07:16:30.1620038Z    300K .......... .......... .......... .......... ..........  2% 55.1M 6s
2021-01-27T07:16:30.1627686Z    350K .......... .......... .......... .......... ..........  3% 62.4M 5s
2021-01-27T07:16:30.1635021Z    400K .......... .......... .......... .......... ..........  3% 65.1M 4s
2021-01-27T07:16:30.2003053Z    450K .......... .......... .......... .......... ..........  4% 1.33M 5s
2021-01-27T07:16:30.2014969Z    500K .......... .......... .......... .......... ..........  4% 39.5M 4s
2021-01-27T07:16:30.2023219Z    550K .......... .......... .......... .......... ..........  4% 51.2M 4s
2021-01-27T07:16:30.2030083Z    600K .......... .......... .......... .......... ..........  5% 70.7M 4s
2021-01-27T07:16:30.2040876Z    650K .......... .......... .......... .......... ..........  5% 46.8M 3s
2021-01-27T07:16:30.2051190Z    700K .......... .......... .......... .......... ..........  6% 52.0M 3s
2021-01-27T07:16:30.2057021Z    750K .......... .......... .......... .......... ..........  6% 75.4M 3s
2021-01-27T07:16:30.2063500Z    800K .......... .......... .......... .......... ..........  6% 74.9M 3s
2021-01-27T07:16:30.2069598Z    850K .......... .......... .......... .......... ..........  7% 85.1M 3s
2021-01-27T07:16:30.2075268Z    900K .......... .......... .......... .......... ..........  7% 87.3M 3s
2021-01-27T07:16:30.2407109Z    950K .......... .......... .......... .......... ..........  8% 1.47M 3s
2021-01-27T07:16:30.2412078Z   1000K .......... .......... .......... .......... ..........  8% 94.8M 3s
2021-01-27T07:16:30.2417000Z   1050K .......... .......... .......... .......... ..........  8% 81.8M 2s
2021-01-27T07:16:30.2422493Z   1100K .......... .......... .......... .......... ..........  9% 90.5M 2s
2021-01-27T07:16:30.2427303Z   1150K .......... .......... .......... .......... ..........  9%  101M 2s
2021-01-27T07:16:30.2432090Z   1200K .......... .......... .......... .......... .......... 10%  110M 2s
2021-01-27T07:16:30.2437075Z   1250K .......... .......... .......... .......... .......... 10% 92.6M 2s
2021-01-27T07:16:30.2441993Z   1300K .......... .......... .......... .......... .......... 10%  103M 2s
2021-01-27T07:16:30.2446299Z   1350K .......... .......... .......... .......... .......... 11%  106M 2s
2021-01-27T07:16:30.2450131Z   1400K .......... .......... .......... .......... .......... 11%  122M 2s
2021-01-27T07:16:30.2455096Z   1450K .......... .......... .......... .......... .......... 12%  103M 2s
2021-01-27T07:16:30.2459666Z   1500K .......... .......... .......... .......... .......... 12%  105M 2s
2021-01-27T07:16:30.2463657Z   1550K .......... .......... .......... .......... .......... 12%  121M 2s
2021-01-27T07:16:30.2467181Z   1600K .......... .......... .......... .......... .......... 13%  135M 2s
2021-01-27T07:16:30.2471163Z   1650K .......... .......... .......... .......... .......... 13%  136M 2s
2021-01-27T07:16:30.2474508Z   1700K .......... .......... .......... .......... .......... 14%  131M 2s
2021-01-27T07:16:30.2478160Z   1750K .......... .......... .......... .......... .......... 14%  138M 1s
2021-01-27T07:16:30.2481771Z   1800K .......... .......... .......... .......... .......... 14%  132M 1s
2021-01-27T07:16:30.2485876Z   1850K .......... .......... .......... .......... .......... 15%  135M 1s
2021-01-27T07:16:30.2811992Z   1900K .......... .......... .......... .......... .......... 15% 1.50M 2s
2021-01-27T07:16:30.2821349Z   1950K .......... .......... .......... .......... .......... 16% 46.7M 1s
2021-01-27T07:16:30.2827690Z   2000K .......... .......... .......... .......... .......... 16% 76.7M 1s
2021-01-27T07:16:30.2834020Z   2050K .......... .......... .......... .......... .......... 16% 80.2M 1s
2021-01-27T07:16:30.2840488Z   2100K .......... .......... .......... .......... .......... 17% 75.7M 1s
2021-01-27T07:16:30.2847736Z   2150K .......... .......... .......... .......... .......... 17% 63.7M 1s
2021-01-27T07:16:30.2855387Z   2200K .......... .......... .......... .......... .......... 18% 65.3M 1s
2021-01-27T07:16:30.2866118Z   2250K .......... .......... .......... .......... .......... 18% 59.6M 1s
2021-01-27T07:16:30.2874136Z   2300K .......... .......... .......... .......... .......... 18% 46.9M 1s
2021-01-27T07:16:30.2882488Z   2350K .......... .......... .......... .......... .......... 19% 56.7M 1s
2021-01-27T07:16:30.2890789Z   2400K .......... .......... .......... .......... .......... 19% 60.3M 1s
2021-01-27T07:16:30.2896399Z   2450K .......... .......... .......... .......... .......... 20% 81.9M 1s
2021-01-27T07:16:30.2900019Z   2500K .......... .......... .......... .......... .......... 20%  128M 1s
2021-01-27T07:16:30.2908332Z   2550K .......... .......... .......... .......... .......... 20% 59.9M 1s
2021-01-27T07:16:30.2914471Z   2600K .......... .......... .......... .......... .......... 21% 77.6M 1s
2021-01-27T07:16:30.2918447Z   2650K .......... .......... .......... .......... .......... 21%  130M 1s
2021-01-27T07:16:30.2921890Z   2700K .......... .......... .......... .......... .......... 22%  126M 1s
2021-01-27T07:16:30.2925405Z   2750K .......... .......... .......... .......... .......... 22%  140M 1s
2021-01-27T07:16:30.2928954Z   2800K .......... .......... .......... .......... .......... 22%  140M 1s
2021-01-27T07:16:30.2932787Z   2850K .......... .......... .......... .......... .......... 23%  134M 1s
2021-01-27T07:16:30.2936208Z   2900K .......... .......... .......... .......... .......... 23%  129M 1s
2021-01-27T07:16:30.2939874Z   2950K .......... .......... .......... .......... .......... 24%  141M 1s
2021-01-27T07:16:30.2943445Z   3000K .......... .......... .......... .......... .......... 24%  134M 1s
2021-01-27T07:16:30.2947311Z   3050K .......... .......... .......... .......... .......... 24%  138M 1s
2021-01-27T07:16:30.2950775Z   3100K .......... .......... .......... .......... .......... 25%  125M 1s
2021-01-27T07:16:30.2954324Z   3150K .......... .......... .......... .......... .......... 25%  140M 1s
2021-01-27T07:16:30.2957761Z   3200K .......... .......... .......... .......... .......... 26%  139M 1s
2021-01-27T07:16:30.2961598Z   3250K .......... .......... .......... .......... .......... 26%  140M 1s
2021-01-27T07:16:30.2965036Z   3300K .......... .......... .......... .......... .......... 27%  129M 1s
2021-01-27T07:16:30.2968610Z   3350K .......... .......... .......... .......... .......... 27%  140M 1s
2021-01-27T07:16:30.2972851Z   3400K .......... .......... .......... .......... .......... 27%  117M 1s
2021-01-27T07:16:30.2976896Z   3450K .......... .......... .......... .......... .......... 28%  132M 1s
2021-01-27T07:16:30.2980454Z   3500K .......... .......... .......... .......... .......... 28%  121M 1s
2021-01-27T07:16:30.2984025Z   3550K .......... .......... .......... .......... .......... 29%  141M 1s
2021-01-27T07:16:30.2987631Z   3600K .......... .......... .......... .......... .......... 29%  132M 1s
2021-01-27T07:16:30.2991421Z   3650K .......... .......... .......... .......... .......... 29%  141M 1s
2021-01-27T07:16:30.2994865Z   3700K .......... .......... .......... .......... .......... 30%  129M 1s
2021-01-27T07:16:30.2998422Z   3750K .......... .......... .......... .......... .......... 30%  140M 1s
2021-01-27T07:16:30.3001904Z   3800K .......... .......... .......... .......... .......... 31%  138M 1s
2021-01-27T07:16:30.3215025Z   3850K .......... .......... .......... .......... .......... 31% 2.32M 1s
2021-01-27T07:16:30.3225345Z   3900K .......... .......... .......... .......... .......... 31% 38.4M 1s
2021-01-27T07:16:30.3232107Z   3950K .......... .......... .......... .......... .......... 32% 71.6M 1s
2021-01-27T07:16:30.3238847Z   4000K .......... .......... .......... .......... .......... 32% 71.9M 1s
2021-01-27T07:16:30.3245348Z   4050K .......... .......... .......... .......... .......... 33% 82.2M 1s
2021-01-27T07:16:30.3252069Z   4100K .......... .......... .......... .......... .......... 33% 66.6M 1s
2021-01-27T07:16:30.3258222Z   4150K .......... .......... .......... .......... .......... 33% 79.5M 1s
2021-01-27T07:16:30.3265470Z   4200K .......... .......... .......... .......... .......... 34% 67.9M 1s
2021-01-27T07:16:30.3273047Z   4250K .......... .......... .......... .......... .......... 34% 78.1M 1s
2021-01-27T07:16:30.3278852Z   4300K .......... .......... .......... .......... .......... 35% 67.7M 1s
2021-01-27T07:16:30.3285923Z   4350K .......... .......... .......... .......... .......... 35% 70.0M 1s
2021-01-27T07:16:30.3290781Z   4400K .......... .......... .......... .......... .......... 35% 98.7M 1s
2021-01-27T07:16:30.3295953Z   4450K .......... .......... .......... .......... .......... 36%  103M 1s
2021-01-27T07:16:30.3302293Z   4500K .......... .......... .......... .......... .......... 36% 72.6M 1s
2021-01-27T07:16:30.3306238Z   4550K .......... .......... .......... .......... .......... 37%  115M 1s
2021-01-27T07:16:30.3311383Z   4600K .......... .......... .......... .......... .......... 37% 97.0M 1s
2021-01-27T07:16:30.3320136Z   4650K .......... .......... .......... .......... .......... 37%  101M 1s
2021-01-27T07:16:30.3321096Z   4700K .......... .......... .......... .......... .......... 38%  245M 1s
2021-01-27T07:16:30.3321692Z   4750K .......... .......... .......... .......... .......... 38%  306M 1s
2021-01-27T07:16:30.3324946Z   4800K .......... .......... .......... .......... .......... 39% 98.6M 1s
2021-01-27T07:16:30.3328679Z   4850K .......... .......... .......... .......... .......... 39%  138M 1s
2021-01-27T07:16:30.3332461Z   4900K .......... .......... .......... .......... .......... 39%  118M 1s
2021-01-27T07:16:30.3335858Z   4950K .......... .......... .......... .......... .......... 40%  137M 0s
2021-01-27T07:16:30.3339356Z   5000K .......... .......... .......... .......... .......... 40%  140M 0s
2021-01-27T07:16:30.3343579Z   5050K .......... .......... .......... .......... .......... 41%  127M 0s
2021-01-27T07:16:30.3347009Z   5100K .......... .......... .......... .......... .......... 41%  127M 0s
2021-01-27T07:16:30.3350621Z   5150K .......... .......... .......... .......... .......... 41%  136M 0s
2021-01-27T07:16:30.3354098Z   5200K .......... .......... .......... .......... .......... 42%  140M 0s
2021-01-27T07:16:30.3357928Z   5250K .......... .......... .......... .......... .......... 42%  137M 0s
2021-01-27T07:16:30.3361387Z   5300K .......... .......... .......... .......... .......... 43%  128M 0s
2021-01-27T07:16:30.3365013Z   5350K .......... .......... .......... .......... .......... 43%  138M 0s
2021-01-27T07:16:30.3368567Z   5400K .......... .......... .......... .......... .......... 43%  135M 0s
2021-01-27T07:16:30.3374934Z   5450K .......... .......... .......... .......... .......... 44%  140M 0s
2021-01-27T07:16:30.3378611Z   5500K .......... .......... .......... .......... .......... 44% 74.8M 0s
2021-01-27T07:16:30.3382382Z   5550K .......... .......... .......... .......... .......... 45%  132M 0s
2021-01-27T07:16:30.3385855Z   5600K .......... .......... .......... .......... .......... 45%  138M 0s
2021-01-27T07:16:30.3389705Z   5650K .......... .......... .......... .......... .......... 45%  141M 0s
2021-01-27T07:16:30.3393152Z   5700K .......... .......... .......... .......... .......... 46%  127M 0s
2021-01-27T07:16:30.3396736Z   5750K .......... .......... .......... .......... .......... 46%  138M 0s
2021-01-27T07:16:30.3400698Z   5800K .......... .......... .......... .......... .......... 47%  125M 0s
2021-01-27T07:16:30.3404601Z   5850K .......... .......... .......... .......... .......... 47%  140M 0s
2021-01-27T07:16:30.3408122Z   5900K .......... .......... .......... .......... .......... 47%  123M 0s
2021-01-27T07:16:30.3411626Z   5950K .......... .......... .......... .......... .......... 48%  140M 0s
2021-01-27T07:16:30.3415982Z   6000K .......... .......... .......... .......... .......... 48%  118M 0s
2021-01-27T07:16:30.3623053Z   6050K .......... .......... .......... .......... .......... 49% 2.37M 0s
2021-01-27T07:16:30.3628391Z   6100K .......... .......... .......... .......... .......... 49% 78.5M 0s
2021-01-27T07:16:30.3632050Z   6150K .......... .......... .......... .......... .......... 49%  133M 0s
2021-01-27T07:16:30.3637117Z   6200K .......... .......... .......... .......... .......... 50% 97.2M 0s
2021-01-27T07:16:30.3645191Z   6250K .......... .......... .......... .......... .......... 50% 65.9M 0s
2021-01-27T07:16:30.3651172Z   6300K .......... .......... .......... .......... .......... 51% 73.8M 0s
2021-01-27T07:16:30.3656196Z   6350K .......... .......... .......... .......... .......... 51% 95.1M 0s
2021-01-27T07:16:30.3660033Z   6400K .......... .......... .......... .......... .......... 51%  131M 0s
2021-01-27T07:16:30.3665398Z   6450K .......... .......... .......... .......... .......... 52% 93.7M 0s
2021-01-27T07:16:30.3668957Z   6500K .......... .......... .......... .......... .......... 52%  125M 0s
2021-01-27T07:16:30.3675864Z   6550K .......... .......... .......... .......... .......... 53% 71.8M 0s
2021-01-27T07:16:30.3683031Z   6600K .......... .......... .......... .......... .......... 53% 68.8M 0s
2021-01-27T07:16:30.3690884Z   6650K .......... .......... .......... .......... .......... 54% 65.2M 0s
2021-01-27T07:16:30.3695543Z   6700K .......... .......... .......... .......... .......... 54% 95.3M 0s
2021-01-27T07:16:30.3699564Z   6750K .......... .......... .......... .......... .......... 54%  122M 0s
2021-01-27T07:16:30.3703787Z   6800K .......... .......... .......... .......... .......... 55%  114M 0s
2021-01-27T07:16:30.3708940Z   6850K .......... .......... .......... .......... .......... 55%  102M 0s
2021-01-27T07:16:30.3712917Z   6900K .......... .......... .......... .......... .......... 56%  112M 0s
2021-01-27T07:16:30.3716441Z   6950K .......... .......... .......... .......... .......... 56%  134M 0s
2021-01-27T07:16:30.3719985Z   7000K .......... .......... .......... .......... .......... 56%  140M 0s
2021-01-27T07:16:30.3723887Z   7050K .......... .......... .......... .......... .......... 57%  139M 0s
2021-01-27T07:16:30.3727339Z   7100K .......... .......... .......... .......... .......... 57%  127M 0s
2021-01-27T07:16:30.3732356Z   7150K .......... .......... .......... .......... .......... 58%  100M 0s
2021-01-27T07:16:30.3737082Z   7200K .......... .......... .......... .......... .......... 58%  104M 0s
2021-01-27T07:16:30.3741120Z   7250K .......... .......... .......... .......... .......... 58%  124M 0s
2021-01-27T07:16:30.3744721Z   7300K .......... .......... .......... .......... .......... 59%  126M 0s
2021-01-27T07:16:30.3748207Z   7350K .......... .......... .......... .......... .......... 59%  137M 0s
2021-01-27T07:16:30.3751823Z   7400K .......... .......... .......... .......... .......... 60%  139M 0s
2021-01-27T07:16:30.3912617Z   7450K .......... .......... .......... .......... .......... 60% 6.93M 0s
2021-01-27T07:16:30.3913416Z   7500K .......... .......... .......... .......... .......... 60%  244M 0s
2021-01-27T07:16:30.3914539Z   7550K .......... .......... .......... .......... .......... 61%  295M 0s
2021-01-27T07:16:30.3915105Z   7600K .......... .......... .......... .......... .......... 61%  302M 0s
2021-01-27T07:16:30.3915609Z   7650K .......... .......... .......... .......... .......... 62%  299M 0s
2021-01-27T07:16:30.3916097Z   7700K .......... .......... .......... .......... .......... 62%  260M 0s
2021-01-27T07:16:30.3916797Z   7750K .......... .......... .......... .......... .......... 62%  301M 0s
2021-01-27T07:16:30.3917291Z   7800K .......... .......... .......... .......... .......... 63%  302M 0s
2021-01-27T07:16:30.3917769Z   7850K .......... .......... .......... .......... .......... 63%  301M 0s
2021-01-27T07:16:30.3918260Z   7900K .......... .......... .......... .......... .......... 64%  254M 0s
2021-01-27T07:16:30.3918740Z   7950K .......... .......... .......... .......... .......... 64%  296M 0s
2021-01-27T07:16:30.3919217Z   8000K .......... .......... .......... .......... .......... 64%  301M 0s
2021-01-27T07:16:30.3919708Z   8050K .......... .......... .......... .......... .......... 65%  108M 0s
2021-01-27T07:16:30.3920184Z   8100K .......... .......... .......... .......... .......... 65%  266M 0s
2021-01-27T07:16:30.3920814Z   8150K .......... .......... .......... .......... .......... 66%  297M 0s
2021-01-27T07:16:30.3921294Z   8200K .......... .......... .......... .......... .......... 66%  297M 0s
2021-01-27T07:16:30.4030182Z   8250K .......... .......... .......... .......... .......... 66% 2.80M 0s
2021-01-27T07:16:30.4034150Z   8300K .......... .......... .......... .......... .......... 67% 67.2M 0s
2021-01-27T07:16:30.4039762Z   8350K .......... .......... .......... .......... .......... 67% 76.4M 0s
2021-01-27T07:16:30.4041382Z   8400K .......... .......... .......... .......... .......... 68%  281M 0s
2021-01-27T07:16:30.4043594Z   8450K .......... .......... .......... .......... .......... 68%  294M 0s
2021-01-27T07:16:30.4045014Z   8500K .......... .......... .......... .......... .......... 68%  268M 0s
2021-01-27T07:16:30.4051201Z   8550K .......... .......... .......... .......... .......... 69% 90.8M 0s
2021-01-27T07:16:30.4053564Z   8600K .......... .......... .......... .......... .......... 69%  293M 0s
2021-01-27T07:16:30.4055328Z   8650K .......... .......... .......... .......... .......... 70%  313M 0s
2021-01-27T07:16:30.4058146Z   8700K .......... .......... .......... .......... .......... 70% 92.3M 0s
2021-01-27T07:16:30.4086742Z   8750K .......... .......... .......... .......... .......... 70%  172M 0s
2021-01-27T07:16:30.4094121Z   8800K .......... .......... .......... .......... .......... 71%  307M 0s
2021-01-27T07:16:30.4100245Z   8850K .......... .......... .......... .......... .......... 71%  312M 0s
2021-01-27T07:16:30.4101077Z   8900K .......... .......... .......... .......... .......... 72%  158M 0s
2021-01-27T07:16:30.4102800Z   8950K .......... .......... .......... .......... .......... 72%  291M 0s
2021-01-27T07:16:30.4103266Z   9000K .......... .......... .......... .......... .......... 72%  309M 0s
2021-01-27T07:16:30.4103691Z   9050K .......... .......... .......... .......... .......... 73%  314M 0s
2021-01-27T07:16:30.4104162Z   9100K .......... .......... .......... .......... .......... 73%  157M 0s
2021-01-27T07:16:30.4104589Z   9150K .......... .......... .......... .......... .......... 74%  311M 0s
2021-01-27T07:16:30.4105057Z   9200K .......... .......... .......... .......... .......... 74%  304M 0s
2021-01-27T07:16:30.4105482Z   9250K .......... .......... .......... .......... .......... 74%  183M 0s
2021-01-27T07:16:30.4105929Z   9300K .......... .......... .......... .......... .......... 75%  275M 0s
2021-01-27T07:16:30.4106720Z   9350K .......... .......... .......... .......... .......... 75%  312M 0s
2021-01-27T07:16:30.4107401Z   9400K .......... .......... .......... .......... .......... 76%  312M 0s
2021-01-27T07:16:30.4108093Z   9450K .......... .......... .......... .......... .......... 76%  143M 0s
2021-01-27T07:16:30.4108975Z   9500K .......... .......... .......... .......... .......... 76%  260M 0s
2021-01-27T07:16:30.4109526Z   9550K .......... .......... .......... .......... .......... 77%  308M 0s
2021-01-27T07:16:30.4110095Z   9600K .......... .......... .......... .......... .......... 77%  153M 0s
2021-01-27T07:16:30.4110631Z   9650K .......... .......... .......... .......... .......... 78%  302M 0s
2021-01-27T07:16:30.4111412Z   9700K .......... .......... .......... .......... .......... 78%  268M 0s
2021-01-27T07:16:30.4113950Z   9750K .......... .......... .......... .......... .......... 79% 33.6M 0s
2021-01-27T07:16:30.4118552Z   9800K .......... .......... .......... .......... .......... 79%  106M 0s
2021-01-27T07:16:30.4122374Z   9850K .......... .......... .......... .......... .......... 79%  142M 0s
2021-01-27T07:16:30.4127343Z   9900K .......... .......... .......... .......... .......... 80%  136M 0s
2021-01-27T07:16:30.4128460Z   9950K .......... .......... .......... .......... .......... 80%  298M 0s
2021-01-27T07:16:30.4138669Z  10000K .......... .......... .......... .......... .......... 81%  156M 0s
2021-01-27T07:16:30.4139622Z  10050K .......... .......... .......... .......... .......... 81%  303M 0s
2021-01-27T07:16:30.4140642Z  10100K .......... .......... .......... .......... .......... 81%  273M 0s
2021-01-27T07:16:30.4141338Z  10150K .......... .......... .......... .......... .......... 82%  305M 0s
2021-01-27T07:16:30.4142155Z  10200K .......... .......... .......... .......... .......... 82%  299M 0s
2021-01-27T07:16:30.4174919Z  10250K .......... .......... .......... .......... .......... 83%  310M 0s
2021-01-27T07:16:30.4177966Z  10300K .......... .......... .......... .......... .......... 83% 12.5M 0s
2021-01-27T07:16:30.4184381Z  10350K .......... .......... .......... .......... .......... 83%  120M 0s
2021-01-27T07:16:30.4185226Z  10400K .......... .......... .......... .......... .......... 84%  278M 0s
2021-01-27T07:16:30.4189964Z  10450K .......... .......... .......... .......... .......... 84% 77.8M 0s
2021-01-27T07:16:30.4196952Z  10500K .......... .......... .......... .......... .......... 85%  170M 0s
2021-01-27T07:16:30.4197926Z  10550K .......... .......... .......... .......... .......... 85%  299M 0s
2021-01-27T07:16:30.4198739Z  10600K .......... .......... .......... .......... .......... 85%  302M 0s
2021-01-27T07:16:30.4227849Z  10650K .......... .......... .......... .......... .......... 86% 15.9M 0s
2021-01-27T07:16:30.4232620Z  10700K .......... .......... .......... .......... .......... 86% 81.8M 0s
2021-01-27T07:16:30.4431220Z  10750K .......... .......... .......... .......... .......... 87% 2.47M 0s
2021-01-27T07:16:30.4437072Z  10800K .......... .......... .......... .......... .......... 87% 87.1M 0s
2021-01-27T07:16:30.4440138Z  10850K .......... .......... .......... .......... .......... 87%  195M 0s
2021-01-27T07:16:30.4442083Z  10900K .......... .......... .......... .......... .......... 88%  182M 0s
2021-01-27T07:16:30.4495323Z  10950K .......... .......... .......... .......... .......... 88%  216M 0s
2021-01-27T07:16:30.4497357Z  11000K .......... .......... .......... .......... .......... 89%  197M 0s
2021-01-27T07:16:30.4499301Z  11050K .......... .......... .......... .......... .......... 89%  203M 0s
2021-01-27T07:16:30.4501366Z  11100K .......... .......... .......... .......... .......... 89%  175M 0s
2021-01-27T07:16:30.4503308Z  11150K .......... .......... .......... .......... .......... 90%  210M 0s
2021-01-27T07:16:30.4505188Z  11200K .......... .......... .......... .......... .......... 90%  199M 0s
2021-01-27T07:16:30.4507069Z  11250K .......... .......... .......... .......... .......... 91%  209M 0s
2021-01-27T07:16:30.4508932Z  11300K .......... .......... .......... .......... .......... 91%  165M 0s
2021-01-27T07:16:30.4510808Z  11350K .......... .......... .......... .......... .......... 91%  203M 0s
2021-01-27T07:16:30.4512684Z  11400K .......... .......... .......... .......... .......... 92%  204M 0s
2021-01-27T07:16:30.4514565Z  11450K .......... .......... .......... .......... .......... 92%  107M 0s
2021-01-27T07:16:30.4516438Z  11500K .......... .......... .......... .......... .......... 93%  169M 0s
2021-01-27T07:16:30.4518299Z  11550K .......... .......... .......... .......... .......... 93%  208M 0s
2021-01-27T07:16:30.4520176Z  11600K .......... .......... .......... .......... .......... 93%  209M 0s
2021-01-27T07:16:30.4522624Z  11650K .......... .......... .......... .......... .......... 94%  208M 0s
2021-01-27T07:16:30.4527985Z  11700K .......... .......... .......... .......... .......... 94%  187M 0s
2021-01-27T07:16:30.4529404Z  11750K .......... .......... .......... .......... .......... 95%  212M 0s
2021-01-27T07:16:30.4530784Z  11800K .......... .......... .......... .......... .......... 95%  207M 0s
2021-01-27T07:16:30.4532135Z  11850K .......... .......... .......... .......... .......... 95%  213M 0s
2021-01-27T07:16:30.4533497Z  11900K .......... .......... .......... .......... .......... 96%  175M 0s
2021-01-27T07:16:30.4534917Z  11950K .......... .......... .......... .......... .......... 96%  210M 0s
2021-01-27T07:16:30.4549613Z  12000K .......... .......... .......... .......... .......... 97%  202M 0s
2021-01-27T07:16:30.4550231Z  12050K .......... .......... .......... .......... .......... 97%  212M 0s
2021-01-27T07:16:30.4550686Z  12100K .......... .......... .......... .......... .......... 97%  178M 0s
2021-01-27T07:16:30.4551122Z  12150K .......... .......... .......... .......... .......... 98%  211M 0s
2021-01-27T07:16:30.4551608Z  12200K .......... .......... .......... .......... .......... 98%  216M 0s
2021-01-27T07:16:30.4552033Z  12250K .......... .......... .......... .......... .......... 99%  212M 0s
2021-01-27T07:16:30.4552472Z  12300K .......... .......... .......... .......... .......... 99%  179M 0s
2021-01-27T07:16:30.4552905Z  12350K .......... .......... .......... .......... .......... 99%  217M 0s
2021-01-27T07:16:30.4553352Z  12400K ....                                                  100% 7629G=0.5s
2021-01-27T07:16:30.4553641Z 
2021-01-27T07:16:30.4554862Z 2021-01-27 07:16:30 (26.8 MB/s) - ‘cm’ saved [12701696/12701696]
2021-01-27T07:16:30.4555188Z 
2021-01-27T07:16:30.4723216Z > Using Docker
2021-01-27T07:16:30.4848433Z - Your Docker API version is 1.40
2021-01-27T07:16:30.4886298Z > Downloading Selenoid...
2021-01-27T07:16:30.4887439Z - Fetching tags for image aerokube/selenoid
2021-01-27T07:16:30.4888364Z registry.ping url=https://registry.hub.docker.com/v2/
2021-01-27T07:16:31.0755750Z registry.tags url=https://registry.hub.docker.com/v2/aerokube/selenoid/tags/list repository=aerokube/selenoid
2021-01-27T07:16:31.4653131Z - Pulling image aerokube/selenoid:1.10.1
2021-01-27T07:16:32.0865720Z 
2021-01-27T07:16:32.0872180Z 
2021-01-27T07:16:32.3364768Z 
2021-01-27T07:16:32.3365557Z 	[531e226c10ac]: Downloading [>                                                  ]  7.267kB/674.3kB
2021-01-27T07:16:32.3391716Z e[1Ae[2K
2021-01-27T07:16:32.3392351Z 	[2dd412dc46de]: Downloading [>                                                  ]  37.23kB/3.586MB
2021-01-27T07:16:32.3482411Z e[1Ae[2K
2021-01-27T07:16:32.3483033Z 	[801bfaa63ef2]: Downloading [>                                                  ]  29.34kB/2.799MB
2021-01-27T07:16:32.3968701Z e[1Ae[2K
2021-01-27T07:16:32.3969370Z 	[531e226c10ac]: Verifying Checksum [>                                                  ]  29.34kB/2.799MB
2021-01-27T07:16:32.3970055Z e[1Ae[2K
2021-01-27T07:16:32.3970579Z 	[531e226c10ac]: Download complete [>                                                  ]  29.34kB/2.799MB
2021-01-27T07:16:32.4349293Z e[1Ae[2K
2021-01-27T07:16:32.4349679Z 
2021-01-27T07:16:32.4349957Z 
2021-01-27T07:16:32.4501651Z 
2021-01-27T07:16:32.4502846Z 	[801bfaa63ef2]: Downloading [==================================>                ]  1.948MB/2.799MB
2021-01-27T07:16:32.4605540Z e[1Ae[2K
2021-01-27T07:16:32.4605879Z 
2021-01-27T07:16:32.4606111Z 
2021-01-27T07:16:32.4609591Z 
2021-01-27T07:16:32.4610165Z 	[801bfaa63ef2]: Extracting [>                                                  ]  32.77kB/2.799MB
2021-01-27T07:16:32.5614062Z e[1Ae[2K
2021-01-27T07:16:32.5614722Z 	[801bfaa63ef2]: Extracting [=============================>                     ]  1.638MB/2.799MB
2021-01-27T07:16:32.5866256Z e[1Ae[2K
2021-01-27T07:16:32.6124674Z 
2021-01-27T07:16:32.6156169Z 
2021-01-27T07:16:32.6156893Z 	[531e226c10ac]: Extracting [==>                                                ]  32.77kB/674.3kB
2021-01-27T07:16:32.7175835Z e[1Ae[2K
2021-01-27T07:16:32.7176406Z 	[531e226c10ac]: Extracting [=========================================>         ]  557.1kB/674.3kB
2021-01-27T07:16:32.7516518Z e[1Ae[2K
2021-01-27T07:16:32.7631434Z 
2021-01-27T07:16:32.8348873Z 
2021-01-27T07:16:32.8370027Z 
2021-01-27T07:16:32.8371594Z 	[2dd412dc46de]: Extracting [>                                                  ]  65.54kB/3.586MB
2021-01-27T07:16:32.9373443Z e[1Ae[2K
2021-01-27T07:16:32.9374083Z 	[2dd412dc46de]: Extracting [===============================>                   ]  2.228MB/3.586MB
2021-01-27T07:16:32.9660326Z e[1Ae[2K
2021-01-27T07:16:32.9668700Z 
2021-01-27T07:16:32.9764594Z 
2021-01-27T07:16:32.9796912Z 
2021-01-27T07:16:32.9813603Z 
2021-01-27T07:16:32.9818221Z 
2021-01-27T07:16:32.9819678Z > Configuring Selenoid...
2021-01-27T07:16:32.9820491Z > Processing browser "firefox"...
2021-01-27T07:16:32.9822077Z - Fetching tags for image selenoid/firefox
2021-01-27T07:16:32.9823530Z registry.tags url=https://registry.hub.docker.com/v2/selenoid/firefox/tags/list repository=selenoid/firefox
2021-01-27T07:16:33.2510075Z - Pulling image selenoid/firefox:84.0
2021-01-27T07:16:33.8446781Z 
2021-01-27T07:16:33.8447489Z 
2021-01-27T07:16:33.8447873Z 
2021-01-27T07:16:33.8448259Z 
2021-01-27T07:16:33.8448637Z 
2021-01-27T07:16:33.8449017Z 
2021-01-27T07:16:33.8449379Z 
2021-01-27T07:16:33.8455724Z 
2021-01-27T07:16:33.8456311Z 
2021-01-27T07:16:33.8456711Z 
2021-01-27T07:16:33.8457080Z 
2021-01-27T07:16:33.8457459Z 
2021-01-27T07:16:33.8457839Z 
2021-01-27T07:16:33.8458217Z 
2021-01-27T07:16:33.8458576Z 
2021-01-27T07:16:33.8459080Z 
2021-01-27T07:16:33.8459785Z 
2021-01-27T07:16:33.8460171Z 
2021-01-27T07:16:33.8460527Z 
2021-01-27T07:16:33.8460903Z 
2021-01-27T07:16:33.8461393Z 
2021-01-27T07:16:33.8461632Z 
2021-01-27T07:16:33.8461834Z 
2021-01-27T07:16:33.8462049Z 
2021-01-27T07:16:33.8462266Z 
2021-01-27T07:16:33.8462466Z 
2021-01-27T07:16:33.8462703Z 
2021-01-27T07:16:33.8462918Z 
2021-01-27T07:16:34.0917770Z 
2021-01-27T07:16:34.0918694Z 	[70799171ddba]: Downloading [=========================>                         ]     424B/848B
2021-01-27T07:16:34.0924060Z e[1Ae[2K
2021-01-27T07:16:34.0924395Z 
2021-01-27T07:16:34.0924689Z 
2021-01-27T07:16:34.1045356Z 
2021-01-27T07:16:34.1046072Z 	[d13af8ca898f]: Downloading [>                                                  ]     422B/35.36kB
2021-01-27T07:16:34.1050248Z e[1Ae[2K
2021-01-27T07:16:34.1054061Z 
2021-01-27T07:16:34.1054327Z 
2021-01-27T07:16:34.1658766Z 
2021-01-27T07:16:34.1660333Z 	[7595c8c21622]: Downloading [>                                                  ]  277.5kB/26.7MB
2021-01-27T07:16:34.2672259Z e[1Ae[2K
2021-01-27T07:16:34.2672895Z 	[7595c8c21622]: Downloading [==================>                                ]  9.984MB/26.7MB
2021-01-27T07:16:34.3550344Z e[1Ae[2K
2021-01-27T07:16:34.3559288Z 
2021-01-27T07:16:34.3559640Z 
2021-01-27T07:16:34.3668325Z 
2021-01-27T07:16:34.3668992Z 	[7595c8c21622]: Downloading [===============================================>   ]  25.23MB/26.7MB
2021-01-27T07:16:34.3754870Z e[1Ae[2K
2021-01-27T07:16:34.3755460Z 	[7595c8c21622]: Verifying Checksum [===============================================>   ]  25.23MB/26.7MB
2021-01-27T07:16:34.3767179Z e[1Ae[2K
2021-01-27T07:16:34.3767840Z 	[7595c8c21622]: Download complete [===============================================>   ]  25.23MB/26.7MB
2021-01-27T07:16:34.4297378Z e[1Ae[2K
2021-01-27T07:16:34.4298031Z 	[7595c8c21622]: Extracting [>                                                  ]  294.9kB/26.7MB
2021-01-27T07:16:34.4414864Z e[1Ae[2K
2021-01-27T07:16:34.4415464Z 	[f379101a4bec]: Downloading [>                                                  ]  539.6kB/214.2MB
2021-01-27T07:16:34.5486886Z e[1Ae[2K
2021-01-27T07:16:34.5487496Z 	[f379101a4bec]: Downloading [==>                                                ]  10.66MB/214.2MB
2021-01-27T07:16:34.5559955Z e[1Ae[2K
2021-01-27T07:16:34.5561546Z 	[7595c8c21622]: Extracting [====>                                              ]  2.654MB/26.7MB
2021-01-27T07:16:34.6389586Z e[1Ae[2K
2021-01-27T07:16:34.6390154Z 	[0737f1313e86]: Downloading [==============>                                    ]     423B/1.419kB
2021-01-27T07:16:34.6403394Z e[1Ae[2K
2021-01-27T07:16:34.6416586Z 
2021-01-27T07:16:34.6419960Z 
2021-01-27T07:16:34.6490078Z 
2021-01-27T07:16:34.6490710Z 	[f379101a4bec]: Downloading [=====>                                             ]  23.99MB/214.2MB
2021-01-27T07:16:34.6548491Z e[1Ae[2K
2021-01-27T07:16:34.6549035Z 	[0a73680ce893]: Downloading [===============>                                   ]     424B/1.409kB
2021-01-27T07:16:34.6554529Z e[1Ae[2K
2021-01-27T07:16:34.6564924Z 
2021-01-27T07:16:34.6568196Z 
2021-01-27T07:16:34.6625074Z 
2021-01-27T07:16:34.6625900Z 	[7595c8c21622]: Extracting [=========>                                         ]  5.308MB/26.7MB
2021-01-27T07:16:34.7502150Z e[1Ae[2K
2021-01-27T07:16:34.7502762Z 	[f379101a4bec]: Downloading [========>                                          ]  34.69MB/214.2MB
2021-01-27T07:16:34.7656511Z e[1Ae[2K
2021-01-27T07:16:34.7657084Z 	[7595c8c21622]: Extracting [==============>                                    ]  7.963MB/26.7MB
2021-01-27T07:16:34.8516512Z e[1Ae[2K
2021-01-27T07:16:34.8517113Z 	[f379101a4bec]: Downloading [===========>                                       ]  47.52MB/214.2MB
2021-01-27T07:16:34.8672198Z e[1Ae[2K
2021-01-27T07:16:34.8672827Z 	[7595c8c21622]: Extracting [==================>                                ]  10.03MB/26.7MB
2021-01-27T07:16:34.9124541Z e[1Ae[2K
2021-01-27T07:16:34.9125147Z 	[5671c717bacd]: Downloading [>                                                  ]  1.792kB/119.3kB
2021-01-27T07:16:34.9282155Z e[1Ae[2K
2021-01-27T07:16:34.9293803Z 
2021-01-27T07:16:34.9298141Z 
2021-01-27T07:16:34.9451629Z 
2021-01-27T07:16:34.9455092Z 
2021-01-27T07:16:34.9567065Z 
2021-01-27T07:16:34.9567722Z 	[f379101a4bec]: Downloading [==============>                                    ]   60.9MB/214.2MB
2021-01-27T07:16:34.9841147Z e[1Ae[2K
2021-01-27T07:16:34.9841694Z 	[7595c8c21622]: Extracting [=======================>                           ]  12.39MB/26.7MB
2021-01-27T07:16:35.0527114Z e[1Ae[2K
2021-01-27T07:16:35.0527710Z 	[f379101a4bec]: Downloading [================>                                  ]   72.7MB/214.2MB
2021-01-27T07:16:35.0929183Z e[1Ae[2K
2021-01-27T07:16:35.0929751Z 	[7595c8c21622]: Extracting [===========================>                       ]  14.45MB/26.7MB
2021-01-27T07:16:35.1589377Z e[1Ae[2K
2021-01-27T07:16:35.1589939Z 	[f379101a4bec]: Downloading [===================>                               ]  84.47MB/214.2MB
2021-01-27T07:16:35.2088924Z e[1Ae[2K
2021-01-27T07:16:35.2089495Z 	[7595c8c21622]: Extracting [===============================>                   ]  16.81MB/26.7MB
2021-01-27T07:16:35.2306643Z e[1Ae[2K
2021-01-27T07:16:35.2307239Z 	[4dfbc92ae15e]: Downloading [>                                                  ]  22.28kB/2.206MB
2021-01-27T07:16:35.2693600Z e[1Ae[2K
2021-01-27T07:16:35.2694166Z 	[f379101a4bec]: Downloading [======================>                            ]  97.86MB/214.2MB
2021-01-27T07:16:35.2699106Z e[1Ae[2K
2021-01-27T07:16:35.2699796Z 	[ba7dfb858f4e]: Downloading [>                                                  ]  22.28kB/2.152MB
2021-01-27T07:16:35.3107315Z e[1Ae[2K
2021-01-27T07:16:35.3107859Z 	[7595c8c21622]: Extracting [==================================>                ]  18.58MB/26.7MB
2021-01-27T07:16:35.3248285Z e[1Ae[2K
2021-01-27T07:16:35.3260940Z 
2021-01-27T07:16:35.3264711Z 
2021-01-27T07:16:35.3519944Z 
2021-01-27T07:16:35.3523448Z 
2021-01-27T07:16:35.3641277Z 
2021-01-27T07:16:35.3641973Z 	[f379101a4bec]: Downloading [=========================>                         ]  111.2MB/214.2MB
2021-01-27T07:16:35.4197246Z e[1Ae[2K
2021-01-27T07:16:35.4197784Z 	[7595c8c21622]: Extracting [========================================>          ]  21.53MB/26.7MB
2021-01-27T07:16:35.4651982Z e[1Ae[2K
2021-01-27T07:16:35.4652548Z 	[f379101a4bec]: Downloading [============================>                      ]  123.6MB/214.2MB
2021-01-27T07:16:35.5305242Z e[1Ae[2K
2021-01-27T07:16:35.5305786Z 	[7595c8c21622]: Extracting [============================================>      ]  23.89MB/26.7MB
2021-01-27T07:16:35.5708599Z e[1Ae[2K
2021-01-27T07:16:35.5709208Z 	[f379101a4bec]: Downloading [==============================>                    ]  131.1MB/214.2MB
2021-01-27T07:16:35.6313631Z e[1Ae[2K
2021-01-27T07:16:35.6314241Z 	[5e81377b5ecd]: Downloading [>                                                  ]   27.8kB/2.691MB
2021-01-27T07:16:35.6431243Z e[1Ae[2K
2021-01-27T07:16:35.6431928Z 	[7595c8c21622]: Extracting [=============================================>     ]  24.48MB/26.7MB
2021-01-27T07:16:35.6670831Z e[1Ae[2K
2021-01-27T07:16:35.6671555Z 	[50ed3983716d]: Downloading [>                                                  ]  539.7kB/97.92MB
2021-01-27T07:16:35.6735107Z e[1Ae[2K
2021-01-27T07:16:35.6735803Z 	[f379101a4bec]: Downloading [================================>                  ]  140.2MB/214.2MB
2021-01-27T07:16:35.7421008Z e[1Ae[2K
2021-01-27T07:16:35.7421586Z 	[5e81377b5ecd]: Downloading [================================>                  ]   1.76MB/2.691MB
2021-01-27T07:16:35.7609023Z e[1Ae[2K
2021-01-27T07:16:35.7609562Z 	[7595c8c21622]: Extracting [===============================================>   ]  25.36MB/26.7MB
2021-01-27T07:16:35.7837966Z e[1Ae[2K
2021-01-27T07:16:35.7838590Z 	[50ed3983716d]: Downloading [=====>                                             ]  10.22MB/97.92MB
2021-01-27T07:16:35.7878797Z e[1Ae[2K
2021-01-27T07:16:35.7879376Z 	[f379101a4bec]: Downloading [==================================>                ]  147.2MB/214.2MB
2021-01-27T07:16:35.8012888Z e[1Ae[2K
2021-01-27T07:16:35.8013550Z 	[5e81377b5ecd]: Verifying Checksum [==================================>                ]  147.2MB/214.2MB
2021-01-27T07:16:35.8014228Z e[1Ae[2K
2021-01-27T07:16:35.8014760Z 	[5e81377b5ecd]: Download complete [==================================>                ]  147.2MB/214.2MB
2021-01-27T07:16:35.8806921Z e[1Ae[2K
2021-01-27T07:16:35.8807522Z 	[50ed3983716d]: Downloading [==========>                                        ]   19.9MB/97.92MB
2021-01-27T07:16:35.8886770Z e[1Ae[2K
2021-01-27T07:16:35.8887830Z 	[f379101a4bec]: Downloading [====================================>              ]  156.3MB/214.2MB
2021-01-27T07:16:35.9229699Z e[1Ae[2K
2021-01-27T07:16:35.9230835Z 	[7595c8c21622]: Extracting [=================================================> ]  26.54MB/26.7MB
2021-01-27T07:16:35.9911552Z e[1Ae[2K
2021-01-27T07:16:35.9912131Z 	[50ed3983716d]: Downloading [===============>                                   ]  31.22MB/97.92MB
2021-01-27T07:16:35.9919345Z e[1Ae[2K
2021-01-27T07:16:36.0057238Z 
2021-01-27T07:16:36.0057917Z 	[f379101a4bec]: Downloading [======================================>            ]  164.3MB/214.2MB
2021-01-27T07:16:36.0927030Z e[1Ae[2K
2021-01-27T07:16:36.0927621Z 	[50ed3983716d]: Downloading [=====================>                             ]  43.08MB/97.92MB
2021-01-27T07:16:36.1150439Z e[1Ae[2K
2021-01-27T07:16:36.1151015Z 	[f379101a4bec]: Downloading [========================================>          ]  175.6MB/214.2MB
2021-01-27T07:16:36.1229159Z e[1Ae[2K
2021-01-27T07:16:36.1229749Z 	[9412d5077516]: Downloading [>                                                  ]   40.2kB/4.019MB
2021-01-27T07:16:36.1556255Z e[1Ae[2K
2021-01-27T07:16:36.1556856Z 	[7595c8c21622]: Pull complete [>                                                  ]   40.2kB/4.019MB
2021-01-27T07:16:36.1748924Z e[1Ae[2K
2021-01-27T07:16:36.1752754Z 	[d13af8ca898f]: Extracting [==============================================>    ]  32.77kB/35.36kB
2021-01-27T07:16:36.1753598Z e[1Ae[2K
2021-01-27T07:16:36.2025917Z 
2021-01-27T07:16:36.2026705Z 	[50ed3983716d]: Downloading [==========================>                        ]  51.15MB/97.92MB
2021-01-27T07:16:36.2227022Z e[1Ae[2K
2021-01-27T07:16:36.2228219Z 	[f379101a4bec]: Downloading [==========================================>        ]  184.2MB/214.2MB
2021-01-27T07:16:36.2432721Z e[1Ae[2K
2021-01-27T07:16:36.2433983Z 	[9412d5077516]: Downloading [=======>                                           ]  593.2kB/4.019MB
2021-01-27T07:16:36.2693647Z e[1Ae[2K
2021-01-27T07:16:36.2694926Z 	[9412d5077516]: Verifying Checksum [=======>                                           ]  593.2kB/4.019MB
2021-01-27T07:16:36.2695628Z e[1Ae[2K
2021-01-27T07:16:36.2696627Z 	[9412d5077516]: Download complete [=======>                                           ]  593.2kB/4.019MB
2021-01-27T07:16:36.2931719Z e[1Ae[2K
2021-01-27T07:16:36.2932315Z 	[50ed3983716d]: Downloading [=============================>                     ]  58.18MB/97.92MB
2021-01-27T07:16:36.3069566Z e[1Ae[2K
2021-01-27T07:16:36.3070560Z 	[d13af8ca898f]: Pull complete [=============================>                     ]  58.18MB/97.92MB
2021-01-27T07:16:36.3222028Z e[1Ae[2K
2021-01-27T07:16:36.3222630Z 	[f379101a4bec]: Downloading [=============================================>     ]  196.5MB/214.2MB
2021-01-27T07:16:36.3264772Z e[1Ae[2K
2021-01-27T07:16:36.3265055Z 
2021-01-27T07:16:36.4010953Z 
2021-01-27T07:16:36.4011726Z 	[50ed3983716d]: Downloading [=================================>                 ]   65.7MB/97.92MB
2021-01-27T07:16:36.4152837Z e[1Ae[2K
2021-01-27T07:16:36.4153401Z 	[f379101a4bec]: Downloading [================================================>  ]  207.8MB/214.2MB
2021-01-27T07:16:36.4556531Z e[1Ae[2K
2021-01-27T07:16:36.4557141Z 	[70799171ddba]: Pull complete [================================================>  ]  207.8MB/214.2MB
2021-01-27T07:16:36.4676579Z e[1Ae[2K
2021-01-27T07:16:36.4677200Z 	[f379101a4bec]: Verifying Checksum [================================================>  ]  207.8MB/214.2MB
2021-01-27T07:16:36.4680363Z e[1Ae[2K
2021-01-27T07:16:36.4680912Z 	[f379101a4bec]: Download complete [================================================>  ]  207.8MB/214.2MB
2021-01-27T07:16:36.4738531Z e[1Ae[2K
2021-01-27T07:16:36.4738830Z 
2021-01-27T07:16:36.5044352Z 
2021-01-27T07:16:36.5045113Z 	[50ed3983716d]: Downloading [=======================================>           ]  76.99MB/97.92MB
2021-01-27T07:16:36.5496010Z e[1Ae[2K
2021-01-27T07:16:36.5496614Z 	[b6c12202c5ef]: Pull complete [=======================================>           ]  76.99MB/97.92MB
2021-01-27T07:16:36.5659616Z e[1Ae[2K
2021-01-27T07:16:36.5664008Z 
2021-01-27T07:16:36.5667273Z 
2021-01-27T07:16:36.6051455Z 
2021-01-27T07:16:36.6052210Z 	[50ed3983716d]: Downloading [=============================================>     ]  88.86MB/97.92MB
2021-01-27T07:16:36.6950516Z e[1Ae[2K
2021-01-27T07:16:36.6951115Z 	[f379101a4bec]: Extracting [>                                                  ]  557.1kB/214.2MB
2021-01-27T07:16:36.7026315Z e[1Ae[2K
2021-01-27T07:16:36.7027016Z 	[50ed3983716d]: Verifying Checksum [>                                                  ]  557.1kB/214.2MB
2021-01-27T07:16:36.7040217Z e[1Ae[2K
2021-01-27T07:16:36.7040858Z 	[50ed3983716d]: Download complete [>                                                  ]  557.1kB/214.2MB
2021-01-27T07:16:36.7369842Z e[1Ae[2K
2021-01-27T07:16:36.7370504Z 	[ecd2e899091b]: Downloading [==============>                                    ]     423B/1.459kB
2021-01-27T07:16:36.7375718Z e[1Ae[2K
2021-01-27T07:16:36.7379007Z 
2021-01-27T07:16:36.7381897Z 
2021-01-27T07:16:36.8048257Z 
2021-01-27T07:16:36.8049068Z 	[f379101a4bec]: Extracting [>                                                  ]  3.899MB/214.2MB
2021-01-27T07:16:36.9079397Z e[1Ae[2K
2021-01-27T07:16:36.9080061Z 	[f379101a4bec]: Extracting [=>                                                 ]  8.356MB/214.2MB
2021-01-27T07:16:37.0174521Z e[1Ae[2K
2021-01-27T07:16:37.0175207Z 	[f379101a4bec]: Extracting [==>                                                ]  12.81MB/214.2MB
2021-01-27T07:16:37.1228544Z e[1Ae[2K
2021-01-27T07:16:37.1229196Z 	[f379101a4bec]: Extracting [===>                                               ]  16.15MB/214.2MB
2021-01-27T07:16:37.2231164Z e[1Ae[2K
2021-01-27T07:16:37.2231706Z 	[f379101a4bec]: Extracting [====>                                              ]  18.94MB/214.2MB
2021-01-27T07:16:37.3348493Z e[1Ae[2K
2021-01-27T07:16:37.3349048Z 	[f379101a4bec]: Extracting [=====>                                             ]  23.95MB/214.2MB
2021-01-27T07:16:37.4416831Z e[1Ae[2K
2021-01-27T07:16:37.4417383Z 	[f379101a4bec]: Extracting [======>                                            ]  27.85MB/214.2MB
2021-01-27T07:16:37.5425645Z e[1Ae[2K
2021-01-27T07:16:37.5426294Z 	[f379101a4bec]: Extracting [=======>                                           ]  31.75MB/214.2MB
2021-01-27T07:16:37.6564138Z e[1Ae[2K
2021-01-27T07:16:37.6564743Z 	[f379101a4bec]: Extracting [========>                                          ]  35.65MB/214.2MB
2021-01-27T07:16:37.7600260Z e[1Ae[2K
2021-01-27T07:16:37.7600873Z 	[f379101a4bec]: Extracting [=========>                                         ]  38.99MB/214.2MB
2021-01-27T07:16:37.8748414Z e[1Ae[2K
2021-01-27T07:16:37.8749036Z 	[f379101a4bec]: Extracting [==========>                                        ]  42.89MB/214.2MB
2021-01-27T07:16:37.9774624Z e[1Ae[2K
2021-01-27T07:16:37.9775176Z 	[f379101a4bec]: Extracting [==========>                                        ]  46.24MB/214.2MB
2021-01-27T07:16:38.0927078Z e[1Ae[2K
2021-01-27T07:16:38.0927637Z 	[f379101a4bec]: Extracting [===========>                                       ]  50.14MB/214.2MB
2021-01-27T07:16:38.2039385Z e[1Ae[2K
2021-01-27T07:16:38.2039968Z 	[f379101a4bec]: Extracting [============>                                      ]  53.48MB/214.2MB
2021-01-27T07:16:38.3236168Z e[1Ae[2K
2021-01-27T07:16:38.3236740Z 	[f379101a4bec]: Extracting [=============>                                     ]  55.71MB/214.2MB
2021-01-27T07:16:38.4459882Z e[1Ae[2K
2021-01-27T07:16:38.4460523Z 	[f379101a4bec]: Extracting [=============>                                     ]  57.93MB/214.2MB
2021-01-27T07:16:38.5715631Z e[1Ae[2K
2021-01-27T07:16:38.5716227Z 	[f379101a4bec]: Extracting [==============>                                    ]  60.72MB/214.2MB
2021-01-27T07:16:38.6776839Z e[1Ae[2K
2021-01-27T07:16:38.6777403Z 	[f379101a4bec]: Extracting [==============>                                    ]   63.5MB/214.2MB
2021-01-27T07:16:38.7929293Z e[1Ae[2K
2021-01-27T07:16:38.7929853Z 	[f379101a4bec]: Extracting [===============>                                   ]  66.85MB/214.2MB
2021-01-27T07:16:38.8975707Z e[1Ae[2K
2021-01-27T07:16:38.8976277Z 	[f379101a4bec]: Extracting [================>                                  ]  70.75MB/214.2MB
2021-01-27T07:16:39.0004132Z e[1Ae[2K
2021-01-27T07:16:39.0004712Z 	[f379101a4bec]: Extracting [=================>                                 ]  74.65MB/214.2MB
2021-01-27T07:16:39.1023087Z e[1Ae[2K
2021-01-27T07:16:39.1023687Z 	[f379101a4bec]: Extracting [==================>                                ]  77.99MB/214.2MB
2021-01-27T07:16:39.2087015Z e[1Ae[2K
2021-01-27T07:16:39.2087586Z 	[f379101a4bec]: Extracting [===================>                               ]  83.56MB/214.2MB
2021-01-27T07:16:39.3185522Z e[1Ae[2K
2021-01-27T07:16:39.3186082Z 	[f379101a4bec]: Extracting [====================>                              ]  89.13MB/214.2MB
2021-01-27T07:16:39.4311760Z e[1Ae[2K
2021-01-27T07:16:39.4312419Z 	[f379101a4bec]: Extracting [=====================>                             ]  94.14MB/214.2MB
2021-01-27T07:16:39.5476693Z e[1Ae[2K
2021-01-27T07:16:39.5477304Z 	[f379101a4bec]: Extracting [======================>                            ]  96.93MB/214.2MB
2021-01-27T07:16:39.6582752Z e[1Ae[2K
2021-01-27T07:16:39.6583373Z 	[f379101a4bec]: Extracting [=======================>                           ]  99.71MB/214.2MB
2021-01-27T07:16:39.7745148Z e[1Ae[2K
2021-01-27T07:16:39.7745801Z 	[f379101a4bec]: Extracting [========================>                          ]  104.7MB/214.2MB
2021-01-27T07:16:39.8800893Z e[1Ae[2K
2021-01-27T07:16:39.8801571Z 	[f379101a4bec]: Extracting [=========================>                         ]  109.2MB/214.2MB
2021-01-27T07:16:39.9831447Z e[1Ae[2K
2021-01-27T07:16:39.9832069Z 	[f379101a4bec]: Extracting [==========================>                        ]  114.2MB/214.2MB
2021-01-27T07:16:40.0908514Z e[1Ae[2K
2021-01-27T07:16:40.0909140Z 	[f379101a4bec]: Extracting [===========================>                       ]  119.2MB/214.2MB
2021-01-27T07:16:40.2008513Z e[1Ae[2K
2021-01-27T07:16:40.2009123Z 	[f379101a4bec]: Extracting [============================>                      ]  123.7MB/214.2MB
2021-01-27T07:16:40.3046321Z e[1Ae[2K
2021-01-27T07:16:40.3046938Z 	[f379101a4bec]: Extracting [==============================>                    ]  128.7MB/214.2MB
2021-01-27T07:16:40.4145120Z e[1Ae[2K
2021-01-27T07:16:40.4145902Z 	[f379101a4bec]: Extracting [===============================>                   ]  133.1MB/214.2MB
2021-01-27T07:16:40.5286854Z e[1Ae[2K
2021-01-27T07:16:40.5287431Z 	[f379101a4bec]: Extracting [===============================>                   ]  135.9MB/214.2MB
2021-01-27T07:16:40.6899717Z e[1Ae[2K
2021-01-27T07:16:40.6900287Z 	[f379101a4bec]: Extracting [===============================>                   ]    137MB/214.2MB
2021-01-27T07:16:40.8622650Z e[1Ae[2K
2021-01-27T07:16:40.8623270Z 	[f379101a4bec]: Extracting [================================>                  ]  137.6MB/214.2MB
2021-01-27T07:16:40.9757615Z e[1Ae[2K
2021-01-27T07:16:40.9758226Z 	[f379101a4bec]: Extracting [=================================>                 ]    142MB/214.2MB
2021-01-27T07:16:41.0768703Z e[1Ae[2K
2021-01-27T07:16:41.0769309Z 	[f379101a4bec]: Extracting [==================================>                ]  147.1MB/214.2MB
2021-01-27T07:16:41.1773728Z e[1Ae[2K
2021-01-27T07:16:41.1774329Z 	[f379101a4bec]: Extracting [===================================>               ]  153.2MB/214.2MB
2021-01-27T07:16:41.2827556Z e[1Ae[2K
2021-01-27T07:16:41.2828094Z 	[f379101a4bec]: Extracting [=====================================>             ]  160.4MB/214.2MB
2021-01-27T07:16:41.3916810Z e[1Ae[2K
2021-01-27T07:16:41.3917365Z 	[f379101a4bec]: Extracting [=======================================>           ]  167.7MB/214.2MB
2021-01-27T07:16:41.4950093Z e[1Ae[2K
2021-01-27T07:16:41.4950658Z 	[f379101a4bec]: Extracting [========================================>          ]  173.2MB/214.2MB
2021-01-27T07:16:41.5966231Z e[1Ae[2K
2021-01-27T07:16:41.5966787Z 	[f379101a4bec]: Extracting [==========================================>        ]  181.6MB/214.2MB
2021-01-27T07:16:41.7036137Z e[1Ae[2K
2021-01-27T07:16:41.7036697Z 	[f379101a4bec]: Extracting [===========================================>       ]  187.2MB/214.2MB
2021-01-27T07:16:41.8098291Z e[1Ae[2K
2021-01-27T07:16:41.8098959Z 	[f379101a4bec]: Extracting [============================================>      ]  192.7MB/214.2MB
2021-01-27T07:16:41.9104701Z e[1Ae[2K
2021-01-27T07:16:41.9105319Z 	[f379101a4bec]: Extracting [==============================================>    ]  197.2MB/214.2MB
2021-01-27T07:16:42.0401877Z e[1Ae[2K
2021-01-27T07:16:42.0402499Z 	[f379101a4bec]: Extracting [==============================================>    ]  199.4MB/214.2MB
2021-01-27T07:16:43.2665905Z e[1Ae[2K
2021-01-27T07:16:43.2666527Z 	[f379101a4bec]: Extracting [===============================================>   ]  202.8MB/214.2MB
2021-01-27T07:16:43.4084756Z e[1Ae[2K
2021-01-27T07:16:43.4085376Z 	[f379101a4bec]: Extracting [===============================================>   ]  203.3MB/214.2MB
2021-01-27T07:16:43.5835509Z e[1Ae[2K
2021-01-27T07:16:43.5836093Z 	[f379101a4bec]: Extracting [===============================================>   ]  204.4MB/214.2MB
2021-01-27T07:16:43.7387601Z e[1Ae[2K
2021-01-27T07:16:43.7388162Z 	[f379101a4bec]: Extracting [===============================================>   ]    205MB/214.2MB
2021-01-27T07:16:43.9211060Z e[1Ae[2K
2021-01-27T07:16:43.9211712Z 	[f379101a4bec]: Extracting [===============================================>   ]  205.6MB/214.2MB
2021-01-27T07:16:44.9035253Z e[1Ae[2K
2021-01-27T07:16:44.9036239Z 	[f379101a4bec]: Extracting [================================================>  ]  206.1MB/214.2MB
2021-01-27T07:16:45.0483425Z e[1Ae[2K
2021-01-27T07:16:45.0484276Z 	[f379101a4bec]: Extracting [================================================>  ]  207.2MB/214.2MB
2021-01-27T07:16:45.1813792Z e[1Ae[2K
2021-01-27T07:16:45.1814401Z 	[f379101a4bec]: Extracting [================================================>  ]  208.3MB/214.2MB
2021-01-27T07:16:45.2960662Z e[1Ae[2K
2021-01-27T07:16:45.2961256Z 	[f379101a4bec]: Extracting [=================================================> ]  211.7MB/214.2MB
2021-01-27T07:16:45.4799152Z e[1Ae[2K
2021-01-27T07:16:45.4804213Z 	[f379101a4bec]: Extracting [=================================================> ]  212.8MB/214.2MB
2021-01-27T07:16:45.6663050Z e[1Ae[2K
2021-01-27T07:16:45.6664255Z 	[f379101a4bec]: Extracting [=================================================> ]  213.9MB/214.2MB
2021-01-27T07:16:45.6975176Z e[1Ae[2K
2021-01-27T07:16:47.4126586Z 
2021-01-27T07:16:47.4483967Z 
2021-01-27T07:16:47.4488660Z 
2021-01-27T07:16:47.5085060Z 
2021-01-27T07:16:47.5109337Z 
2021-01-27T07:16:47.5114129Z 
2021-01-27T07:16:47.5712395Z 
2021-01-27T07:16:47.5733314Z 
2021-01-27T07:16:47.5733982Z 	[5671c717bacd]: Extracting [=============>                                     ]  32.77kB/119.3kB
2021-01-27T07:16:47.5746596Z e[1Ae[2K
2021-01-27T07:16:47.5754387Z 
2021-01-27T07:16:47.6328247Z 
2021-01-27T07:16:47.6346569Z 
2021-01-27T07:16:47.6350410Z 
2021-01-27T07:16:47.7065499Z 
2021-01-27T07:16:47.7080272Z 
2021-01-27T07:16:47.7080954Z 	[4dfbc92ae15e]: Extracting [>                                                  ]  32.77kB/2.206MB
2021-01-27T07:16:47.7861787Z e[1Ae[2K
2021-01-27T07:16:47.7956907Z 
2021-01-27T07:16:47.7972414Z 
2021-01-27T07:16:47.7973507Z 	[ba7dfb858f4e]: Extracting [>                                                  ]  32.77kB/2.152MB
2021-01-27T07:16:47.8691602Z e[1Ae[2K
2021-01-27T07:16:47.8773796Z 
2021-01-27T07:16:47.9395654Z 
2021-01-27T07:16:48.0491613Z 	[50ed3983716d]: Extracting [>                                                  ]  557.1kB/97.92MB
2021-01-27T07:16:48.0492740Z e[1Ae[2K
2021-01-27T07:16:48.0493235Z 	[50ed3983716d]: Extracting [===>                                               ]  6.128MB/97.92MB
2021-01-27T07:16:48.1663736Z e[1Ae[2K
2021-01-27T07:16:48.1664287Z 	[50ed3983716d]: Extracting [=====>                                             ]  10.03MB/97.92MB
2021-01-27T07:16:48.2680019Z e[1Ae[2K
2021-01-27T07:16:48.2680566Z 	[50ed3983716d]: Extracting [======>                                            ]  12.81MB/97.92MB
2021-01-27T07:16:48.3701519Z e[1Ae[2K
2021-01-27T07:16:48.3702073Z 	[50ed3983716d]: Extracting [========>                                          ]  16.71MB/97.92MB
2021-01-27T07:16:48.4761838Z e[1Ae[2K
2021-01-27T07:16:48.4762516Z 	[50ed3983716d]: Extracting [==========>                                        ]  20.05MB/97.92MB
2021-01-27T07:16:48.5938026Z e[1Ae[2K
2021-01-27T07:16:48.5938711Z 	[50ed3983716d]: Extracting [============>                                      ]  24.51MB/97.92MB
2021-01-27T07:16:48.7035933Z e[1Ae[2K
2021-01-27T07:16:48.7036512Z 	[50ed3983716d]: Extracting [==============>                                    ]  28.41MB/97.92MB
2021-01-27T07:16:48.8037997Z e[1Ae[2K
2021-01-27T07:16:48.8038545Z 	[50ed3983716d]: Extracting [===============>                                   ]   31.2MB/97.92MB
2021-01-27T07:16:48.9069212Z e[1Ae[2K
2021-01-27T07:16:48.9069757Z 	[50ed3983716d]: Extracting [==================>                                ]  36.21MB/97.92MB
2021-01-27T07:16:49.0117537Z e[1Ae[2K
2021-01-27T07:16:49.0118168Z 	[50ed3983716d]: Extracting [=====================>                             ]  41.78MB/97.92MB
2021-01-27T07:16:49.1154425Z e[1Ae[2K
2021-01-27T07:16:49.1155110Z 	[50ed3983716d]: Extracting [========================>                          ]  47.35MB/97.92MB
2021-01-27T07:16:49.2170066Z e[1Ae[2K
2021-01-27T07:16:49.2170642Z 	[50ed3983716d]: Extracting [==========================>                        ]  52.36MB/97.92MB
2021-01-27T07:16:49.3287461Z e[1Ae[2K
2021-01-27T07:16:49.3288067Z 	[50ed3983716d]: Extracting [=============================>                     ]  57.38MB/97.92MB
2021-01-27T07:16:49.4424808Z e[1Ae[2K
2021-01-27T07:16:49.4425429Z 	[50ed3983716d]: Extracting [===============================>                   ]  61.83MB/97.92MB
2021-01-27T07:16:49.5436835Z e[1Ae[2K
2021-01-27T07:16:49.5437426Z 	[50ed3983716d]: Extracting [=================================>                 ]  65.73MB/97.92MB
2021-01-27T07:16:49.6502733Z e[1Ae[2K
2021-01-27T07:16:49.6505099Z 	[50ed3983716d]: Extracting [===================================>               ]  70.19MB/97.92MB
2021-01-27T07:16:49.7635555Z e[1Ae[2K
2021-01-27T07:16:49.7636339Z 	[50ed3983716d]: Extracting [======================================>            ]   75.2MB/97.92MB
2021-01-27T07:16:49.8658113Z e[1Ae[2K
2021-01-27T07:16:49.8658652Z 	[50ed3983716d]: Extracting [========================================>          ]  78.54MB/97.92MB
2021-01-27T07:16:49.9751875Z e[1Ae[2K
2021-01-27T07:16:49.9752440Z 	[50ed3983716d]: Extracting [==========================================>        ]  82.44MB/97.92MB
2021-01-27T07:16:50.0777559Z e[1Ae[2K
2021-01-27T07:16:50.0778155Z 	[50ed3983716d]: Extracting [============================================>      ]  87.46MB/97.92MB
2021-01-27T07:16:50.1872389Z e[1Ae[2K
2021-01-27T07:16:50.1872949Z 	[50ed3983716d]: Extracting [===============================================>   ]  92.47MB/97.92MB
2021-01-27T07:16:50.3093210Z e[1Ae[2K
2021-01-27T07:16:50.3093781Z 	[50ed3983716d]: Extracting [=================================================> ]  96.37MB/97.92MB
2021-01-27T07:16:50.4138876Z e[1Ae[2K
2021-01-27T07:16:51.1110334Z 
2021-01-27T07:16:51.1128302Z 
2021-01-27T07:16:51.1136685Z 	[5e81377b5ecd]: Extracting [>                                                  ]  32.77kB/2.691MB
2021-01-27T07:16:51.2140863Z e[1Ae[2K
2021-01-27T07:16:51.2141431Z 	[5e81377b5ecd]: Extracting [====================================>              ]  1.966MB/2.691MB
2021-01-27T07:16:51.2374196Z e[1Ae[2K
2021-01-27T07:16:51.2491149Z 
2021-01-27T07:16:51.2515288Z 
2021-01-27T07:16:51.2515896Z 	[9412d5077516]: Extracting [>                                                  ]  65.54kB/4.019MB
2021-01-27T07:16:51.3522400Z e[1Ae[2K
2021-01-27T07:16:51.3522946Z 	[9412d5077516]: Extracting [=============================>                     ]  2.359MB/4.019MB
2021-01-27T07:16:51.4017530Z e[1Ae[2K
2021-01-27T07:16:52.7084180Z 
2021-01-27T07:16:52.7142858Z 
2021-01-27T07:16:52.7144857Z 
2021-01-27T07:16:52.7694232Z 
2021-01-27T07:16:52.7717960Z 
2021-01-27T07:16:52.7726106Z 
2021-01-27T07:16:52.8312040Z 
2021-01-27T07:16:52.8348485Z 
2021-01-27T07:16:52.8372843Z 
2021-01-27T07:16:52.8381070Z 
2021-01-27T07:16:52.8383155Z - Pulling image selenoid/firefox:83.0
2021-01-27T07:16:53.4363001Z 
2021-01-27T07:16:53.4402283Z 
2021-01-27T07:16:53.4435274Z 
2021-01-27T07:16:53.4455056Z 
2021-01-27T07:16:53.4480986Z 
2021-01-27T07:16:53.4501399Z 
2021-01-27T07:16:53.4520358Z 
2021-01-27T07:16:53.4549813Z 
2021-01-27T07:16:53.4567827Z 
2021-01-27T07:16:53.4594312Z 
2021-01-27T07:16:53.4620395Z 
2021-01-27T07:16:53.4620720Z 
2021-01-27T07:16:53.4620932Z 
2021-01-27T07:16:53.4621155Z 
2021-01-27T07:16:53.4621373Z 
2021-01-27T07:16:53.4621574Z 
2021-01-27T07:16:53.4621789Z 
2021-01-27T07:16:53.7199975Z 
2021-01-27T07:16:53.7200786Z 	[d5a478dca8b1]: Downloading [>                                                  ]  40.98kB/4.019MB
2021-01-27T07:16:53.7230539Z e[1Ae[2K
2021-01-27T07:16:53.7231173Z 	[648faa4fd47b]: Downloading [>                                                  ]   27.8kB/2.691MB
2021-01-27T07:16:53.8026234Z e[1Ae[2K
2021-01-27T07:16:53.8026807Z 	[bfb6590761d9]: Downloading [>                                                  ]  527.6kB/97.49MB
2021-01-27T07:16:53.8146575Z e[1Ae[2K
2021-01-27T07:16:53.8147198Z 	[648faa4fd47b]: Verifying Checksum [>                                                  ]  527.6kB/97.49MB
2021-01-27T07:16:53.8154229Z e[1Ae[2K
2021-01-27T07:16:53.8154799Z 	[648faa4fd47b]: Download complete [>                                                  ]  527.6kB/97.49MB
2021-01-27T07:16:53.8207244Z e[1Ae[2K
2021-01-27T07:16:53.8207812Z 	[d5a478dca8b1]: Downloading [=====================>                             ]  1.698MB/4.019MB
2021-01-27T07:16:53.8423638Z e[1Ae[2K
2021-01-27T07:16:53.8425117Z 	[d5a478dca8b1]: Verifying Checksum [=====================>                             ]  1.698MB/4.019MB
2021-01-27T07:16:53.8425893Z e[1Ae[2K
2021-01-27T07:16:53.8426436Z 	[d5a478dca8b1]: Download complete [=====================>                             ]  1.698MB/4.019MB
2021-01-27T07:16:53.9102959Z e[1Ae[2K
2021-01-27T07:16:53.9103633Z 	[bfb6590761d9]: Downloading [===>                                               ]  6.958MB/97.49MB
2021-01-27T07:16:54.0064158Z e[1Ae[2K
2021-01-27T07:16:54.0065272Z 	[bfb6590761d9]: Downloading [========>                                          ]  17.14MB/97.49MB
2021-01-27T07:16:54.0648277Z e[1Ae[2K
2021-01-27T07:16:54.0648599Z 
2021-01-27T07:16:54.0648834Z 
2021-01-27T07:16:54.1040360Z 
2021-01-27T07:16:54.1041177Z 	[d56ba0b8a3ad]: Downloading [==========================>                        ]     424B/802B
2021-01-27T07:16:54.1045108Z e[1Ae[2K
2021-01-27T07:16:54.1049037Z 
2021-01-27T07:16:54.1050929Z 
2021-01-27T07:16:54.1083475Z 
2021-01-27T07:16:54.1084239Z 	[bfb6590761d9]: Downloading [================>                                  ]  31.57MB/97.49MB
2021-01-27T07:16:54.2116557Z e[1Ae[2K
2021-01-27T07:16:54.2117152Z 	[bfb6590761d9]: Downloading [======================>                            ]  43.94MB/97.49MB
2021-01-27T07:16:54.3116325Z e[1Ae[2K
2021-01-27T07:16:54.3117336Z 	[bfb6590761d9]: Downloading [=============================>                     ]  57.33MB/97.49MB
2021-01-27T07:16:54.4127492Z e[1Ae[2K
2021-01-27T07:16:54.4128425Z 	[bfb6590761d9]: Downloading [================================>                  ]  64.29MB/97.49MB
2021-01-27T07:16:54.5161471Z e[1Ae[2K
2021-01-27T07:16:54.5162062Z 	[bfb6590761d9]: Downloading [========================================>          ]  79.25MB/97.49MB
2021-01-27T07:16:54.6193188Z e[1Ae[2K
2021-01-27T07:16:54.6193846Z 	[bfb6590761d9]: Downloading [==============================================>    ]  91.01MB/97.49MB
2021-01-27T07:16:54.6597225Z e[1Ae[2K
2021-01-27T07:16:54.6597871Z 	[bfb6590761d9]: Verifying Checksum [==============================================>    ]  91.01MB/97.49MB
2021-01-27T07:16:54.6598549Z e[1Ae[2K
2021-01-27T07:16:54.6599062Z 	[bfb6590761d9]: Download complete [==============================================>    ]  91.01MB/97.49MB
2021-01-27T07:16:54.7233836Z e[1Ae[2K
2021-01-27T07:16:54.7234460Z 	[bfb6590761d9]: Extracting [>                                                  ]  557.1kB/97.49MB
2021-01-27T07:16:54.8247222Z e[1Ae[2K
2021-01-27T07:16:54.8248344Z 	[bfb6590761d9]: Extracting [==>                                                ]  5.571MB/97.49MB
2021-01-27T07:16:54.9327832Z e[1Ae[2K
2021-01-27T07:16:54.9329946Z 	[bfb6590761d9]: Extracting [=====>                                             ]  10.03MB/97.49MB
2021-01-27T07:16:55.0356726Z e[1Ae[2K
2021-01-27T07:16:55.0357281Z 	[bfb6590761d9]: Extracting [======>                                            ]  12.81MB/97.49MB
2021-01-27T07:16:55.1377986Z e[1Ae[2K
2021-01-27T07:16:55.1378789Z 	[bfb6590761d9]: Extracting [========>                                          ]  17.27MB/97.49MB
2021-01-27T07:16:55.2531030Z e[1Ae[2K
2021-01-27T07:16:55.2531595Z 	[bfb6590761d9]: Extracting [==========>                                        ]  21.17MB/97.49MB
2021-01-27T07:16:55.3614505Z e[1Ae[2K
2021-01-27T07:16:55.3615330Z 	[bfb6590761d9]: Extracting [=============>                                     ]  26.18MB/97.49MB
2021-01-27T07:16:55.4678844Z e[1Ae[2K
2021-01-27T07:16:55.4679395Z 	[bfb6590761d9]: Extracting [===============>                                   ]  30.64MB/97.49MB
2021-01-27T07:16:55.5782309Z e[1Ae[2K
2021-01-27T07:16:55.5783220Z 	[bfb6590761d9]: Extracting [==================>                                ]  35.65MB/97.49MB
2021-01-27T07:16:55.6828556Z e[1Ae[2K
2021-01-27T07:16:55.6829152Z 	[bfb6590761d9]: Extracting [=====================>                             ]  41.22MB/97.49MB
2021-01-27T07:16:55.7872544Z e[1Ae[2K
2021-01-27T07:16:55.7873100Z 	[bfb6590761d9]: Extracting [=======================>                           ]  46.79MB/97.49MB
2021-01-27T07:16:55.8951969Z e[1Ae[2K
2021-01-27T07:16:55.8952598Z 	[bfb6590761d9]: Extracting [==========================>                        ]  51.81MB/97.49MB
2021-01-27T07:16:56.0112249Z e[1Ae[2K
2021-01-27T07:16:56.0112836Z 	[bfb6590761d9]: Extracting [=============================>                     ]  56.82MB/97.49MB
2021-01-27T07:16:56.1143537Z e[1Ae[2K
2021-01-27T07:16:56.1144290Z 	[bfb6590761d9]: Extracting [===============================>                   ]  60.72MB/97.49MB
2021-01-27T07:16:56.2191817Z e[1Ae[2K
2021-01-27T07:16:56.2192374Z 	[bfb6590761d9]: Extracting [=================================>                 ]  64.62MB/97.49MB
2021-01-27T07:16:56.3201433Z e[1Ae[2K
2021-01-27T07:16:56.3202032Z 	[bfb6590761d9]: Extracting [===================================>               ]  68.52MB/97.49MB
2021-01-27T07:16:56.4254300Z e[1Ae[2K
2021-01-27T07:16:56.4254856Z 	[bfb6590761d9]: Extracting [====================================>              ]  70.75MB/97.49MB
2021-01-27T07:16:56.5393291Z e[1Ae[2K
2021-01-27T07:16:56.5393840Z 	[bfb6590761d9]: Extracting [======================================>            ]  75.76MB/97.49MB
2021-01-27T07:16:56.6566478Z e[1Ae[2K
2021-01-27T07:16:56.6567149Z 	[bfb6590761d9]: Extracting [========================================>          ]   79.1MB/97.49MB
2021-01-27T07:16:56.7609168Z e[1Ae[2K
2021-01-27T07:16:56.7609797Z 	[bfb6590761d9]: Extracting [==========================================>        ]     83MB/97.49MB
2021-01-27T07:16:56.8732525Z e[1Ae[2K
2021-01-27T07:16:56.8733086Z 	[bfb6590761d9]: Extracting [============================================>      ]  87.46MB/97.49MB
2021-01-27T07:16:56.9789063Z e[1Ae[2K
2021-01-27T07:16:56.9790746Z 	[bfb6590761d9]: Extracting [===============================================>   ]  91.91MB/97.49MB
2021-01-27T07:16:57.0933310Z e[1Ae[2K
2021-01-27T07:16:57.0933860Z 	[bfb6590761d9]: Extracting [================================================>  ]  95.26MB/97.49MB
2021-01-27T07:16:57.2169978Z e[1Ae[2K
2021-01-27T07:16:57.2170577Z 	[bfb6590761d9]: Extracting [=================================================> ]  97.48MB/97.49MB
2021-01-27T07:16:57.2261059Z e[1Ae[2K
2021-01-27T07:17:00.5586318Z 
2021-01-27T07:17:00.6090389Z 
2021-01-27T07:17:00.6091662Z 	[648faa4fd47b]: Extracting [>                                                  ]  32.77kB/2.691MB
2021-01-27T07:17:00.7072334Z e[1Ae[2K
2021-01-27T07:17:00.7072965Z 	[648faa4fd47b]: Extracting [===========================================>       ]  2.327MB/2.691MB
2021-01-27T07:17:00.7238162Z e[1Ae[2K
2021-01-27T07:17:00.7326099Z 
2021-01-27T07:17:00.7348732Z 
2021-01-27T07:17:00.7349689Z 	[d5a478dca8b1]: Extracting [>                                                  ]  65.54kB/4.019MB
2021-01-27T07:17:00.8358056Z e[1Ae[2K
2021-01-27T07:17:00.8359152Z 	[d5a478dca8b1]: Extracting [==========================>                        ]  2.097MB/4.019MB
2021-01-27T07:17:00.8768715Z e[1Ae[2K
2021-01-27T07:17:00.8871335Z 
2021-01-27T07:17:00.8886953Z 
2021-01-27T07:17:00.8890189Z 
2021-01-27T07:17:00.9532309Z 
2021-01-27T07:17:00.9547356Z 
2021-01-27T07:17:00.9556602Z 
2021-01-27T07:17:01.0177538Z 
2021-01-27T07:17:01.0207150Z 
2021-01-27T07:17:01.0227336Z 
2021-01-27T07:17:01.0236851Z 
2021-01-27T07:17:01.0237494Z > Processing browser "chrome"...
2021-01-27T07:17:01.0239055Z - Fetching tags for image selenoid/chrome
2021-01-27T07:17:01.0240432Z registry.tags url=https://registry.hub.docker.com/v2/selenoid/chrome/tags/list repository=selenoid/chrome
2021-01-27T07:17:01.5350042Z - Pulling image selenoid/chrome:88.0
2021-01-27T07:17:02.0746290Z 
2021-01-27T07:17:02.0766059Z 
2021-01-27T07:17:02.0781790Z 
2021-01-27T07:17:02.0800735Z 
2021-01-27T07:17:02.0815026Z 
2021-01-27T07:17:02.0833793Z 
2021-01-27T07:17:02.0851021Z 
2021-01-27T07:17:02.0932515Z 
2021-01-27T07:17:02.0949607Z 
2021-01-27T07:17:02.0966423Z 
2021-01-27T07:17:02.0983819Z 
2021-01-27T07:17:02.0984338Z 
2021-01-27T07:17:02.0985699Z 
2021-01-27T07:17:02.0986720Z 
2021-01-27T07:17:02.0987309Z 
2021-01-27T07:17:02.0987760Z 
2021-01-27T07:17:02.0988142Z 
2021-01-27T07:17:02.3457801Z 
2021-01-27T07:17:02.3458499Z 	[6f519e6982b1]: Downloading [>                                                  ]  60.01kB/5.82MB
2021-01-27T07:17:02.3584282Z e[1Ae[2K
2021-01-27T07:17:02.3584873Z 	[44db3e83a2ac]: Downloading [>                                                  ]  22.32kB/2.159MB
2021-01-27T07:17:02.4078372Z e[1Ae[2K
2021-01-27T07:17:02.4079163Z 	[20b7fe14c7f3]: Downloading [>                                                  ]  539.7kB/108.1MB
2021-01-27T07:17:02.4430397Z e[1Ae[2K
2021-01-27T07:17:02.4433739Z 
2021-01-27T07:17:02.4562129Z 
2021-01-27T07:17:02.4562966Z 	[6f519e6982b1]: Downloading [==================>                                ]   2.21MB/5.82MB
2021-01-27T07:17:02.5105395Z e[1Ae[2K
2021-01-27T07:17:02.5105959Z 	[20b7fe14c7f3]: Downloading [====>                                              ]   9.12MB/108.1MB
2021-01-27T07:17:02.5386693Z e[1Ae[2K
2021-01-27T07:17:02.5387311Z 	[6f519e6982b1]: Verifying Checksum [====>                                              ]   9.12MB/108.1MB
2021-01-27T07:17:02.5387976Z e[1Ae[2K
2021-01-27T07:17:02.5388815Z 	[6f519e6982b1]: Download complete [====>                                              ]   9.12MB/108.1MB
2021-01-27T07:17:02.6140268Z e[1Ae[2K
2021-01-27T07:17:02.6140789Z 	[20b7fe14c7f3]: Downloading [===========>                                       ]  24.14MB/108.1MB
2021-01-27T07:17:02.6937215Z e[1Ae[2K
2021-01-27T07:17:02.6937895Z 	[4820bf51eaaf]: Downloading [===============>                                   ]     424B/1.397kB
2021-01-27T07:17:02.6938540Z e[1Ae[2K
2021-01-27T07:17:02.6938781Z 
2021-01-27T07:17:02.6939936Z 
2021-01-27T07:17:02.7139165Z 
2021-01-27T07:17:02.7140028Z 	[20b7fe14c7f3]: Downloading [==================>                                ]   40.8MB/108.1MB
2021-01-27T07:17:02.7836121Z e[1Ae[2K
2021-01-27T07:17:02.7836833Z 	[ddac2d6d4777]: Downloading [>                                                  ]  60.67kB/5.82MB
2021-01-27T07:17:02.8152870Z e[1Ae[2K
2021-01-27T07:17:02.8153434Z 	[20b7fe14c7f3]: Downloading [==========================>                        ]  56.34MB/108.1MB
2021-01-27T07:17:02.8838994Z e[1Ae[2K
2021-01-27T07:17:02.8839586Z 	[ddac2d6d4777]: Downloading [======================>                            ]  2.677MB/5.82MB
2021-01-27T07:17:02.9063035Z e[1Ae[2K
2021-01-27T07:17:02.9063779Z 	[ddac2d6d4777]: Verifying Checksum [======================>                            ]  2.677MB/5.82MB
2021-01-27T07:17:02.9064453Z e[1Ae[2K
2021-01-27T07:17:02.9065043Z 	[ddac2d6d4777]: Download complete [======================>                            ]  2.677MB/5.82MB
2021-01-27T07:17:02.9182171Z e[1Ae[2K
2021-01-27T07:17:02.9182799Z 	[20b7fe14c7f3]: Downloading [=================================>                 ]  72.42MB/108.1MB
2021-01-27T07:17:03.0225320Z e[1Ae[2K
2021-01-27T07:17:03.0225984Z 	[20b7fe14c7f3]: Downloading [=======================================>           ]  86.32MB/108.1MB
2021-01-27T07:17:03.1192808Z e[1Ae[2K
2021-01-27T07:17:03.1193467Z 	[20b7fe14c7f3]: Downloading [===============================================>   ]  102.4MB/108.1MB
2021-01-27T07:17:03.1551043Z e[1Ae[2K
2021-01-27T07:17:03.1551705Z 	[20b7fe14c7f3]: Verifying Checksum [===============================================>   ]  102.4MB/108.1MB
2021-01-27T07:17:03.1552365Z e[1Ae[2K
2021-01-27T07:17:03.1552921Z 	[20b7fe14c7f3]: Download complete [===============================================>   ]  102.4MB/108.1MB
2021-01-27T07:17:03.2368613Z e[1Ae[2K
2021-01-27T07:17:03.2369243Z 	[20b7fe14c7f3]: Extracting [>                                                  ]  557.1kB/108.1MB
2021-01-27T07:17:03.3597713Z e[1Ae[2K
2021-01-27T07:17:03.3598290Z 	[20b7fe14c7f3]: Extracting [==>                                                ]  5.571MB/108.1MB
2021-01-27T07:17:03.4640687Z e[1Ae[2K
2021-01-27T07:17:03.4641263Z 	[20b7fe14c7f3]: Extracting [===>                                               ]  8.356MB/108.1MB
2021-01-27T07:17:03.5745049Z e[1Ae[2K
2021-01-27T07:17:03.5745616Z 	[20b7fe14c7f3]: Extracting [======>                                            ]  13.93MB/108.1MB
2021-01-27T07:17:03.6856483Z e[1Ae[2K
2021-01-27T07:17:03.6857091Z 	[20b7fe14c7f3]: Extracting [=========>                                         ]   19.5MB/108.1MB
2021-01-27T07:17:03.7890058Z e[1Ae[2K
2021-01-27T07:17:03.7890857Z 	[20b7fe14c7f3]: Extracting [===========>                                       ]  24.51MB/108.1MB
2021-01-27T07:17:03.8891530Z e[1Ae[2K
2021-01-27T07:17:03.8892149Z 	[20b7fe14c7f3]: Extracting [=============>                                     ]  28.97MB/108.1MB
2021-01-27T07:17:03.9907661Z e[1Ae[2K
2021-01-27T07:17:03.9908282Z 	[20b7fe14c7f3]: Extracting [===============>                                   ]  33.98MB/108.1MB
2021-01-27T07:17:04.0988122Z e[1Ae[2K
2021-01-27T07:17:04.0988741Z 	[20b7fe14c7f3]: Extracting [==================>                                ]  40.11MB/108.1MB
2021-01-27T07:17:04.2068528Z e[1Ae[2K
2021-01-27T07:17:04.2069187Z 	[20b7fe14c7f3]: Extracting [====================>                              ]  45.12MB/108.1MB
2021-01-27T07:17:04.3134122Z e[1Ae[2K
2021-01-27T07:17:04.3134765Z 	[20b7fe14c7f3]: Extracting [=======================>                           ]  50.69MB/108.1MB
2021-01-27T07:17:04.4150840Z e[1Ae[2K
2021-01-27T07:17:04.4151394Z 	[20b7fe14c7f3]: Extracting [==========================>                        ]  56.26MB/108.1MB
2021-01-27T07:17:04.5169557Z e[1Ae[2K
2021-01-27T07:17:04.5170115Z 	[20b7fe14c7f3]: Extracting [============================>                      ]  61.83MB/108.1MB
2021-01-27T07:17:04.6270245Z e[1Ae[2K
2021-01-27T07:17:04.6270797Z 	[20b7fe14c7f3]: Extracting [===============================>                   ]   67.4MB/108.1MB
2021-01-27T07:17:04.7335152Z e[1Ae[2K
2021-01-27T07:17:04.7335713Z 	[20b7fe14c7f3]: Extracting [=================================>                 ]  72.42MB/108.1MB
2021-01-27T07:17:04.8486941Z e[1Ae[2K
2021-01-27T07:17:04.8487801Z 	[20b7fe14c7f3]: Extracting [===================================>               ]  75.76MB/108.1MB
2021-01-27T07:17:04.9618304Z e[1Ae[2K
2021-01-27T07:17:04.9619107Z 	[20b7fe14c7f3]: Extracting [======================================>            ]  82.44MB/108.1MB
2021-01-27T07:17:05.0777290Z e[1Ae[2K
2021-01-27T07:17:05.0778115Z 	[20b7fe14c7f3]: Extracting [========================================>          ]   86.9MB/108.1MB
2021-01-27T07:17:05.1838387Z e[1Ae[2K
2021-01-27T07:17:05.1839300Z 	[20b7fe14c7f3]: Extracting [=========================================>         ]  90.24MB/108.1MB
2021-01-27T07:17:05.2912037Z e[1Ae[2K
2021-01-27T07:17:05.2912689Z 	[20b7fe14c7f3]: Extracting [===========================================>       ]  94.14MB/108.1MB
2021-01-27T07:17:05.3988284Z e[1Ae[2K
2021-01-27T07:17:05.3988893Z 	[20b7fe14c7f3]: Extracting [===============================================>   ]  103.1MB/108.1MB
2021-01-27T07:17:05.5037464Z e[1Ae[2K
2021-01-27T07:17:05.5038116Z 	[20b7fe14c7f3]: Extracting [=================================================> ]    107MB/108.1MB
2021-01-27T07:17:05.5606562Z e[1Ae[2K
2021-01-27T07:17:06.8224314Z 
2021-01-27T07:17:06.8257604Z 
2021-01-27T07:17:06.8258764Z 	[44db3e83a2ac]: Extracting [>                                                  ]  32.77kB/2.159MB
2021-01-27T07:17:06.8935990Z e[1Ae[2K
2021-01-27T07:17:06.8939060Z 
2021-01-27T07:17:06.9038781Z 
2021-01-27T07:17:06.9073085Z 
2021-01-27T07:17:06.9073821Z 	[6f519e6982b1]: Extracting [>                                                  ]  65.54kB/5.82MB
2021-01-27T07:17:07.0078675Z e[1Ae[2K
2021-01-27T07:17:07.0079523Z 	[6f519e6982b1]: Extracting [====================>                              ]  2.425MB/5.82MB
2021-01-27T07:17:07.0709379Z e[1Ae[2K
2021-01-27T07:17:07.0869321Z 
2021-01-27T07:17:07.0883158Z 
2021-01-27T07:17:07.0886752Z 
2021-01-27T07:17:07.1493590Z 
2021-01-27T07:17:07.1521175Z 
2021-01-27T07:17:07.1521942Z 	[ddac2d6d4777]: Extracting [>                                                  ]  65.54kB/5.82MB
2021-01-27T07:17:07.2528555Z e[1Ae[2K
2021-01-27T07:17:07.2529135Z 	[ddac2d6d4777]: Extracting [=========================>                         ]  3.015MB/5.82MB
2021-01-27T07:17:07.3392807Z e[1Ae[2K
2021-01-27T07:17:07.3518950Z 
2021-01-27T07:17:07.3553394Z 
2021-01-27T07:17:07.3583424Z 
2021-01-27T07:17:07.3589652Z 
2021-01-27T07:17:07.3590811Z - Pulling image selenoid/chrome:87.0
2021-01-27T07:17:07.9070369Z 
2021-01-27T07:17:07.9094915Z 
2021-01-27T07:17:07.9112266Z 
2021-01-27T07:17:07.9134327Z 
2021-01-27T07:17:07.9163630Z 
2021-01-27T07:17:07.9188649Z 
2021-01-27T07:17:07.9207225Z 
2021-01-27T07:17:07.9239681Z 
2021-01-27T07:17:07.9275590Z 
2021-01-27T07:17:07.9297280Z 
2021-01-27T07:17:07.9318628Z 
2021-01-27T07:17:07.9318938Z 
2021-01-27T07:17:07.9319146Z 
2021-01-27T07:17:07.9324322Z 
2021-01-27T07:17:07.9326736Z 
2021-01-27T07:17:07.9328892Z 
2021-01-27T07:17:07.9330983Z 
2021-01-27T07:17:08.1866877Z 
2021-01-27T07:17:08.1868074Z 	[f56bd0c01fbb]: Downloading [>                                                  ]  22.49kB/2.16MB
2021-01-27T07:17:08.1933291Z e[1Ae[2K
2021-01-27T07:17:08.1933872Z 	[8ec590675eb2]: Downloading [>                                                  ]  59.25kB/5.687MB
2021-01-27T07:17:08.2420178Z e[1Ae[2K
2021-01-27T07:17:08.2420749Z 	[35e885c64b84]: Downloading [>                                                  ]  527.6kB/108MB
2021-01-27T07:17:08.2793762Z e[1Ae[2K
2021-01-27T07:17:08.2794422Z 	[f56bd0c01fbb]: Verifying Checksum [>                                                  ]  527.6kB/108MB
2021-01-27T07:17:08.2795083Z e[1Ae[2K
2021-01-27T07:17:08.2795610Z 	[f56bd0c01fbb]: Download complete [>                                                  ]  527.6kB/108MB
2021-01-27T07:17:08.2958889Z e[1Ae[2K
2021-01-27T07:17:08.2959479Z 	[8ec590675eb2]: Downloading [==================================>                ]  3.947MB/5.687MB
2021-01-27T07:17:08.3239488Z e[1Ae[2K
2021-01-27T07:17:08.3240122Z 	[8ec590675eb2]: Verifying Checksum [==================================>                ]  3.947MB/5.687MB
2021-01-27T07:17:08.3244969Z e[1Ae[2K
2021-01-27T07:17:08.3245550Z 	[8ec590675eb2]: Download complete [==================================>                ]  3.947MB/5.687MB
2021-01-27T07:17:08.3489413Z e[1Ae[2K
2021-01-27T07:17:08.3489951Z 	[35e885c64b84]: Downloading [====>                                              ]  9.649MB/108MB
2021-01-27T07:17:08.4491011Z e[1Ae[2K
2021-01-27T07:17:08.4491674Z 	[35e885c64b84]: Downloading [===========>                                       ]  24.69MB/108MB
2021-01-27T07:17:08.5392898Z e[1Ae[2K
2021-01-27T07:17:08.5393746Z 	[1f467695af1d]: Downloading [======================>                            ]     424B/961B
2021-01-27T07:17:08.5395485Z e[1Ae[2K
2021-01-27T07:17:08.5395872Z 
2021-01-27T07:17:08.5396083Z 
2021-01-27T07:17:08.5502971Z 
2021-01-27T07:17:08.5503688Z 	[35e885c64b84]: Downloading [==================>                                ]  40.27MB/108MB
2021-01-27T07:17:08.5887547Z e[1Ae[2K
2021-01-27T07:17:08.5888155Z 	[7ddaa8b13b95]: Downloading [>                                                  ]  58.06kB/5.687MB
2021-01-27T07:17:08.6627711Z e[1Ae[2K
2021-01-27T07:17:08.6628312Z 	[35e885c64b84]: Downloading [=======================>                           ]  49.87MB/108MB
2021-01-27T07:17:08.6884178Z e[1Ae[2K
2021-01-27T07:17:08.6885524Z 	[7ddaa8b13b95]: Downloading [==================>                                ]   2.12MB/5.687MB
2021-01-27T07:17:08.7167823Z e[1Ae[2K
2021-01-27T07:17:08.7168449Z 	[7ddaa8b13b95]: Verifying Checksum [==================>                                ]   2.12MB/5.687MB
2021-01-27T07:17:08.7169333Z e[1Ae[2K
2021-01-27T07:17:08.7169878Z 	[7ddaa8b13b95]: Download complete [==================>                                ]   2.12MB/5.687MB
2021-01-27T07:17:08.7664937Z e[1Ae[2K
2021-01-27T07:17:08.7665506Z 	[35e885c64b84]: Downloading [=============================>                     ]  63.26MB/108MB
2021-01-27T07:17:08.8666269Z e[1Ae[2K
2021-01-27T07:17:08.8666830Z 	[35e885c64b84]: Downloading [====================================>              ]  78.77MB/108MB
2021-01-27T07:17:08.9688204Z e[1Ae[2K
2021-01-27T07:17:08.9688824Z 	[35e885c64b84]: Downloading [========================================>          ]  87.36MB/108MB
2021-01-27T07:17:09.0733008Z e[1Ae[2K
2021-01-27T07:17:09.0734766Z 	[35e885c64b84]: Downloading [============================================>      ]  95.39MB/108MB
2021-01-27T07:17:09.1870429Z e[1Ae[2K
2021-01-27T07:17:09.1871270Z 	[35e885c64b84]: Downloading [===============================================>   ]  103.4MB/108MB
2021-01-27T07:17:09.2286152Z e[1Ae[2K
2021-01-27T07:17:09.2286871Z 	[35e885c64b84]: Verifying Checksum [===============================================>   ]  103.4MB/108MB
2021-01-27T07:17:09.2287524Z e[1Ae[2K
2021-01-27T07:17:09.2288047Z 	[35e885c64b84]: Download complete [===============================================>   ]  103.4MB/108MB
2021-01-27T07:17:09.2990749Z e[1Ae[2K
2021-01-27T07:17:09.2991407Z 	[35e885c64b84]: Extracting [>                                                  ]  557.1kB/108MB
2021-01-27T07:17:09.4091361Z e[1Ae[2K
2021-01-27T07:17:09.4091942Z 	[35e885c64b84]: Extracting [==>                                                ]  5.571MB/108MB
2021-01-27T07:17:09.5106864Z e[1Ae[2K
2021-01-27T07:17:09.5107412Z 	[35e885c64b84]: Extracting [===>                                               ]  8.356MB/108MB
2021-01-27T07:17:09.6258139Z e[1Ae[2K
2021-01-27T07:17:09.6258783Z 	[35e885c64b84]: Extracting [======>                                            ]  13.93MB/108MB
2021-01-27T07:17:09.7309575Z e[1Ae[2K
2021-01-27T07:17:09.7310311Z 	[35e885c64b84]: Extracting [========>                                          ]  18.94MB/108MB
2021-01-27T07:17:09.8330399Z e[1Ae[2K
2021-01-27T07:17:09.8330999Z 	[35e885c64b84]: Extracting [===========>                                       ]  24.51MB/108MB
2021-01-27T07:17:09.9445879Z e[1Ae[2K
2021-01-27T07:17:09.9446444Z 	[35e885c64b84]: Extracting [=============>                                     ]  30.08MB/108MB
2021-01-27T07:17:10.0446585Z e[1Ae[2K
2021-01-27T07:17:10.0447231Z 	[35e885c64b84]: Extracting [================>                                  ]  35.09MB/108MB
2021-01-27T07:17:10.1477742Z e[1Ae[2K
2021-01-27T07:17:10.1478391Z 	[35e885c64b84]: Extracting [==================>                                ]  39.55MB/108MB
2021-01-27T07:17:10.2479893Z e[1Ae[2K
2021-01-27T07:17:10.2480509Z 	[35e885c64b84]: Extracting [====================>                              ]  44.56MB/108MB
2021-01-27T07:17:10.3522723Z e[1Ae[2K
2021-01-27T07:17:10.3523396Z 	[35e885c64b84]: Extracting [=======================>                           ]  50.14MB/108MB
2021-01-27T07:17:10.4577124Z e[1Ae[2K
2021-01-27T07:17:10.4577770Z 	[35e885c64b84]: Extracting [=========================>                         ]  55.71MB/108MB
2021-01-27T07:17:10.5580436Z e[1Ae[2K
2021-01-27T07:17:10.5580999Z 	[35e885c64b84]: Extracting [============================>                      ]  60.72MB/108MB
2021-01-27T07:17:10.6584622Z e[1Ae[2K
2021-01-27T07:17:10.6585164Z 	[35e885c64b84]: Extracting [==============================>                    ]  66.29MB/108MB
2021-01-27T07:17:10.7656758Z e[1Ae[2K
2021-01-27T07:17:10.7657367Z 	[35e885c64b84]: Extracting [=================================>                 ]  71.86MB/108MB
2021-01-27T07:17:10.8714188Z e[1Ae[2K
2021-01-27T07:17:10.8714817Z 	[35e885c64b84]: Extracting [==================================>                ]   75.2MB/108MB
2021-01-27T07:17:10.9755661Z e[1Ae[2K
2021-01-27T07:17:10.9756264Z 	[35e885c64b84]: Extracting [=====================================>             ]  81.89MB/108MB
2021-01-27T07:17:11.0853541Z e[1Ae[2K
2021-01-27T07:17:11.0854095Z 	[35e885c64b84]: Extracting [=======================================>           ]  86.34MB/108MB
2021-01-27T07:17:11.1893505Z e[1Ae[2K
2021-01-27T07:17:11.1894051Z 	[35e885c64b84]: Extracting [=========================================>         ]  89.69MB/108MB
2021-01-27T07:17:11.3021311Z e[1Ae[2K
2021-01-27T07:17:11.3021976Z 	[35e885c64b84]: Extracting [===========================================>       ]  93.59MB/108MB
2021-01-27T07:17:11.4132743Z e[1Ae[2K
2021-01-27T07:17:11.4133404Z 	[35e885c64b84]: Extracting [===============================================>   ]  103.1MB/108MB
2021-01-27T07:17:11.5139904Z e[1Ae[2K
2021-01-27T07:17:11.5140495Z 	[35e885c64b84]: Extracting [=================================================> ]    107MB/108MB
2021-01-27T07:17:11.5759538Z e[1Ae[2K
2021-01-27T07:17:13.2474653Z 
2021-01-27T07:17:14.6539183Z 
2021-01-27T07:17:14.6540404Z 	[f56bd0c01fbb]: Extracting [>                                                  ]  32.77kB/2.16MB
2021-01-27T07:17:14.7267831Z e[1Ae[2K
2021-01-27T07:17:14.7359957Z 
2021-01-27T07:17:14.7384435Z 
2021-01-27T07:17:14.7385106Z 	[8ec590675eb2]: Extracting [>                                                  ]  65.54kB/5.687MB
2021-01-27T07:17:14.8392056Z e[1Ae[2K
2021-01-27T07:17:14.8392676Z 	[8ec590675eb2]: Extracting [=============================>                     ]  3.342MB/5.687MB
2021-01-27T07:17:14.8836384Z e[1Ae[2K
2021-01-27T07:17:14.8957779Z 
2021-01-27T07:17:14.8974993Z 
2021-01-27T07:17:14.8978397Z 
2021-01-27T07:17:14.9590955Z 
2021-01-27T07:17:14.9611297Z 
2021-01-27T07:17:14.9612012Z 	[7ddaa8b13b95]: Extracting [>                                                  ]  65.54kB/5.687MB
2021-01-27T07:17:15.0621246Z e[1Ae[2K
2021-01-27T07:17:15.0621891Z 	[7ddaa8b13b95]: Extracting [===================>                               ]  2.163MB/5.687MB
2021-01-27T07:17:15.1390910Z e[1Ae[2K
2021-01-27T07:17:15.1516008Z 
2021-01-27T07:17:15.1543667Z 
2021-01-27T07:17:15.1559634Z 
2021-01-27T07:17:15.1565076Z 
2021-01-27T07:17:15.1565825Z > Processing browser "opera"...
2021-01-27T07:17:15.1567176Z - Fetching tags for image selenoid/opera
2021-01-27T07:17:15.1568450Z registry.tags url=https://registry.hub.docker.com/v2/selenoid/opera/tags/list repository=selenoid/opera
2021-01-27T07:17:15.6734552Z - Pulling image selenoid/opera:73.0
2021-01-27T07:17:16.2177206Z 
2021-01-27T07:17:16.2200422Z 
2021-01-27T07:17:16.2231148Z 
2021-01-27T07:17:16.2257702Z 
2021-01-27T07:17:16.2275172Z 
2021-01-27T07:17:16.2297263Z 
2021-01-27T07:17:16.2316279Z 
2021-01-27T07:17:16.2334455Z 
2021-01-27T07:17:16.2394728Z 
2021-01-27T07:17:16.2414500Z 
2021-01-27T07:17:16.2441587Z 
2021-01-27T07:17:16.2441921Z 
2021-01-27T07:17:16.2442148Z 
2021-01-27T07:17:16.2442368Z 
2021-01-27T07:17:16.2442570Z 
2021-01-27T07:17:16.4990344Z 
2021-01-27T07:17:16.4991140Z 	[75bdc7adfa11]: Downloading [>                                                  ]  66.58kB/6.243MB
2021-01-27T07:17:16.5084486Z e[1Ae[2K
2021-01-27T07:17:16.5085015Z 	[6741544db480]: Downloading [=======================>                           ]     424B/909B
2021-01-27T07:17:16.5085854Z e[1Ae[2K
2021-01-27T07:17:16.5086150Z 
2021-01-27T07:17:16.5086396Z 
2021-01-27T07:17:16.5519416Z 
2021-01-27T07:17:16.5520665Z 	[9bcee00f85d2]: Downloading [>                                                  ]  531.7kB/102.9MB
2021-01-27T07:17:16.5993056Z e[1Ae[2K
2021-01-27T07:17:16.5994087Z 	[75bdc7adfa11]: Downloading [===================================>               ]  4.471MB/6.243MB
2021-01-27T07:17:16.6096400Z e[1Ae[2K
2021-01-27T07:17:16.6097000Z 	[75bdc7adfa11]: Verifying Checksum [===================================>               ]  4.471MB/6.243MB
2021-01-27T07:17:16.6098247Z e[1Ae[2K
2021-01-27T07:17:16.6098948Z 	[75bdc7adfa11]: Download complete [===================================>               ]  4.471MB/6.243MB
2021-01-27T07:17:16.6595786Z e[1Ae[2K
2021-01-27T07:17:16.6596753Z 	[9bcee00f85d2]: Downloading [=====>                                             ]  11.23MB/102.9MB
2021-01-27T07:17:16.7564953Z e[1Ae[2K
2021-01-27T07:17:16.7565546Z 	[9bcee00f85d2]: Downloading [============>                                      ]  25.67MB/102.9MB
2021-01-27T07:17:16.7826311Z e[1Ae[2K
2021-01-27T07:17:16.7827153Z 	[fda416c0dbd4]: Downloading [>                                                  ]  63.48kB/6.243MB
2021-01-27T07:17:16.8598274Z e[1Ae[2K
2021-01-27T07:17:16.8598861Z 	[9bcee00f85d2]: Downloading [====================>                              ]  41.21MB/102.9MB
2021-01-27T07:17:16.8828008Z e[1Ae[2K
2021-01-27T07:17:16.8830551Z 	[fda416c0dbd4]: Downloading [======================>                            ]  2.776MB/6.243MB
2021-01-27T07:17:16.9080290Z e[1Ae[2K
2021-01-27T07:17:16.9080605Z 
2021-01-27T07:17:16.9080814Z 
2021-01-27T07:17:16.9641606Z 
2021-01-27T07:17:16.9642693Z 	[9bcee00f85d2]: Downloading [===========================>                       ]   55.7MB/102.9MB
2021-01-27T07:17:17.0646211Z e[1Ae[2K
2021-01-27T07:17:17.0646882Z 	[9bcee00f85d2]: Downloading [=================================>                 ]  69.61MB/102.9MB
2021-01-27T07:17:17.1670360Z e[1Ae[2K
2021-01-27T07:17:17.1670936Z 	[9bcee00f85d2]: Downloading [=========================================>         ]  85.67MB/102.9MB
2021-01-27T07:17:17.2689639Z e[1Ae[2K
2021-01-27T07:17:17.2690281Z 	[9bcee00f85d2]: Downloading [================================================>  ]   99.6MB/102.9MB
2021-01-27T07:17:17.2891997Z e[1Ae[2K
2021-01-27T07:17:17.2892642Z 	[9bcee00f85d2]: Verifying Checksum [================================================>  ]   99.6MB/102.9MB
2021-01-27T07:17:17.2895966Z e[1Ae[2K
2021-01-27T07:17:17.2896532Z 	[9bcee00f85d2]: Download complete [================================================>  ]   99.6MB/102.9MB
2021-01-27T07:17:17.3597890Z e[1Ae[2K
2021-01-27T07:17:17.3599760Z 	[9bcee00f85d2]: Extracting [>                                                  ]  557.1kB/102.9MB
2021-01-27T07:17:17.4622741Z e[1Ae[2K
2021-01-27T07:17:17.4623436Z 	[9bcee00f85d2]: Extracting [=>                                                 ]  3.899MB/102.9MB
2021-01-27T07:17:17.5693819Z e[1Ae[2K
2021-01-27T07:17:17.5694397Z 	[9bcee00f85d2]: Extracting [====>                                              ]  8.913MB/102.9MB
2021-01-27T07:17:17.6785683Z e[1Ae[2K
2021-01-27T07:17:17.6786257Z 	[9bcee00f85d2]: Extracting [======>                                            ]  13.37MB/102.9MB
2021-01-27T07:17:17.7876650Z e[1Ae[2K
2021-01-27T07:17:17.7877285Z 	[9bcee00f85d2]: Extracting [========>                                          ]  17.27MB/102.9MB
2021-01-27T07:17:17.8968948Z e[1Ae[2K
2021-01-27T07:17:17.8969583Z 	[9bcee00f85d2]: Extracting [=========>                                         ]  20.05MB/102.9MB
2021-01-27T07:17:17.9970986Z e[1Ae[2K
2021-01-27T07:17:17.9971648Z 	[9bcee00f85d2]: Extracting [===========>                                       ]   23.4MB/102.9MB
2021-01-27T07:17:18.1047328Z e[1Ae[2K
2021-01-27T07:17:18.1047952Z 	[9bcee00f85d2]: Extracting [==============>                                    ]  28.97MB/102.9MB
2021-01-27T07:17:18.2119621Z e[1Ae[2K
2021-01-27T07:17:18.2120258Z 	[9bcee00f85d2]: Extracting [================>                                  ]  34.54MB/102.9MB
2021-01-27T07:17:18.3164636Z e[1Ae[2K
2021-01-27T07:17:18.3165282Z 	[9bcee00f85d2]: Extracting [===================>                               ]  39.55MB/102.9MB
2021-01-27T07:17:18.4244323Z e[1Ae[2K
2021-01-27T07:17:18.5247050Z 	[9bcee00f85d2]: Extracting [=====================>                             ]  44.56MB/102.9MB
2021-01-27T07:17:18.5248160Z e[1Ae[2K
2021-01-27T07:17:18.5248725Z 	[9bcee00f85d2]: Extracting [========================>                          ]  49.58MB/102.9MB
2021-01-27T07:17:18.6294586Z e[1Ae[2K
2021-01-27T07:17:18.6295194Z 	[9bcee00f85d2]: Extracting [==========================>                        ]  55.15MB/102.9MB
2021-01-27T07:17:18.7316201Z e[1Ae[2K
2021-01-27T07:17:18.7316791Z 	[9bcee00f85d2]: Extracting [=============================>                     ]  60.72MB/102.9MB
2021-01-27T07:17:18.8351211Z e[1Ae[2K
2021-01-27T07:17:18.8351792Z 	[9bcee00f85d2]: Extracting [================================>                  ]  66.29MB/102.9MB
2021-01-27T07:17:18.9432544Z e[1Ae[2K
2021-01-27T07:17:18.9433112Z 	[9bcee00f85d2]: Extracting [==================================>                ]   71.3MB/102.9MB
2021-01-27T07:17:19.0486138Z e[1Ae[2K
2021-01-27T07:17:19.0486708Z 	[9bcee00f85d2]: Extracting [=====================================>             ]  76.32MB/102.9MB
2021-01-27T07:17:19.1492135Z e[1Ae[2K
2021-01-27T07:17:19.1492725Z 	[9bcee00f85d2]: Extracting [======================================>            ]  79.66MB/102.9MB
2021-01-27T07:17:19.2633936Z e[1Ae[2K
2021-01-27T07:17:19.3640341Z 	[9bcee00f85d2]: Extracting [========================================>          ]  82.44MB/102.9MB
2021-01-27T07:17:19.3641664Z e[1Ae[2K
2021-01-27T07:17:19.3642189Z 	[9bcee00f85d2]: Extracting [============================================>      ]   90.8MB/102.9MB
2021-01-27T07:17:19.4726192Z e[1Ae[2K
2021-01-27T07:17:19.4726827Z 	[9bcee00f85d2]: Extracting [================================================>  ]  99.71MB/102.9MB
2021-01-27T07:17:19.5737658Z e[1Ae[2K
2021-01-27T07:17:19.5738282Z 	[9bcee00f85d2]: Extracting [=================================================> ]  101.9MB/102.9MB
2021-01-27T07:17:19.6751974Z e[1Ae[2K
2021-01-27T07:17:20.7044419Z 
2021-01-27T07:17:20.7088015Z 
2021-01-27T07:17:20.7088742Z 	[75bdc7adfa11]: Extracting [>                                                  ]  65.54kB/6.243MB
2021-01-27T07:17:20.8096665Z e[1Ae[2K
2021-01-27T07:17:20.8097253Z 	[75bdc7adfa11]: Extracting [=======================>                           ]  2.884MB/6.243MB
2021-01-27T07:17:20.8906057Z e[1Ae[2K
2021-01-27T07:17:20.9040569Z 
2021-01-27T07:17:20.9062201Z 
2021-01-27T07:17:20.9068283Z 
2021-01-27T07:17:20.9668259Z 
2021-01-27T07:17:20.9698781Z 
2021-01-27T07:17:20.9699652Z 	[fda416c0dbd4]: Extracting [>                                                  ]  65.54kB/6.243MB
2021-01-27T07:17:21.0702821Z e[1Ae[2K
2021-01-27T07:17:21.0704730Z 	[fda416c0dbd4]: Extracting [========================>                          ]   3.08MB/6.243MB
2021-01-27T07:17:21.1456671Z e[1Ae[2K
2021-01-27T07:17:21.1592301Z 
2021-01-27T07:17:21.1625619Z 
2021-01-27T07:17:21.1648260Z 
2021-01-27T07:17:21.1653266Z 
2021-01-27T07:17:21.1655918Z - Pulling image selenoid/opera:72.0
2021-01-27T07:17:21.7674485Z 
2021-01-27T07:17:21.7702452Z 
2021-01-27T07:17:21.7724570Z 
2021-01-27T07:17:21.7743992Z 
2021-01-27T07:17:21.7767811Z 
2021-01-27T07:17:21.7796989Z 
2021-01-27T07:17:21.7816081Z 
2021-01-27T07:17:21.7837914Z 
2021-01-27T07:17:21.7858951Z 
2021-01-27T07:17:21.7877263Z 
2021-01-27T07:17:21.7897620Z 
2021-01-27T07:17:21.7898324Z 
2021-01-27T07:17:21.7898775Z 
2021-01-27T07:17:21.7899117Z 
2021-01-27T07:17:21.7904121Z 
2021-01-27T07:17:22.0395642Z 
2021-01-27T07:17:22.0399628Z 	[e3fbd6c38d60]: Downloading [=======================>                           ]     425B/898B
2021-01-27T07:17:22.0400741Z e[1Ae[2K
2021-01-27T07:17:22.0400984Z 
2021-01-27T07:17:22.0401211Z 
2021-01-27T07:17:22.0533973Z 
2021-01-27T07:17:22.0535647Z 	[04a7bfd85c2e]: Downloading [>                                                  ]  62.35kB/6.16MB
2021-01-27T07:17:22.1092319Z e[1Ae[2K
2021-01-27T07:17:22.1092891Z 	[6ac49c452ecc]: Downloading [>                                                  ]  539.1kB/101.3MB
2021-01-27T07:17:22.1542057Z e[1Ae[2K
2021-01-27T07:17:22.1542632Z 	[04a7bfd85c2e]: Downloading [==================================>                ]  4.262MB/6.16MB
2021-01-27T07:17:22.1667679Z e[1Ae[2K
2021-01-27T07:17:22.1667974Z 
2021-01-27T07:17:22.1668200Z 
2021-01-27T07:17:22.2105757Z 
2021-01-27T07:17:22.2106528Z 	[6ac49c452ecc]: Downloading [=====>                                             ]  11.82MB/101.3MB
2021-01-27T07:17:22.3113179Z e[1Ae[2K
2021-01-27T07:17:22.3113821Z 	[6ac49c452ecc]: Downloading [=============>                                     ]   27.9MB/101.3MB
2021-01-27T07:17:22.3121613Z e[1Ae[2K
2021-01-27T07:17:22.3122174Z 	[c7ed07de3a9e]: Downloading [>                                                  ]  62.32kB/6.16MB
2021-01-27T07:17:22.4121412Z e[1Ae[2K
2021-01-27T07:17:22.4121959Z 	[6ac49c452ecc]: Downloading [====================>                              ]  42.31MB/101.3MB
2021-01-27T07:17:22.4125331Z e[1Ae[2K
2021-01-27T07:17:22.4125852Z 	[c7ed07de3a9e]: Downloading [===========================>                       ]  3.369MB/6.16MB
2021-01-27T07:17:22.4382930Z e[1Ae[2K
2021-01-27T07:17:22.4383554Z 	[c7ed07de3a9e]: Verifying Checksum [===========================>                       ]  3.369MB/6.16MB
2021-01-27T07:17:22.4384223Z e[1Ae[2K
2021-01-27T07:17:22.4384768Z 	[c7ed07de3a9e]: Download complete [===========================>                       ]  3.369MB/6.16MB
2021-01-27T07:17:22.5148422Z e[1Ae[2K
2021-01-27T07:17:22.5149382Z 	[6ac49c452ecc]: Downloading [============================>                      ]  57.33MB/101.3MB
2021-01-27T07:17:22.6153416Z e[1Ae[2K
2021-01-27T07:17:22.6154079Z 	[6ac49c452ecc]: Downloading [====================================>              ]  73.45MB/101.3MB
2021-01-27T07:17:22.7165269Z e[1Ae[2K
2021-01-27T07:17:22.7165944Z 	[6ac49c452ecc]: Downloading [============================================>      ]  89.53MB/101.3MB
2021-01-27T07:17:22.7891818Z e[1Ae[2K
2021-01-27T07:17:22.7892512Z 	[6ac49c452ecc]: Verifying Checksum [============================================>      ]  89.53MB/101.3MB
2021-01-27T07:17:22.7893161Z e[1Ae[2K
2021-01-27T07:17:22.7893693Z 	[6ac49c452ecc]: Download complete [============================================>      ]  89.53MB/101.3MB
2021-01-27T07:17:22.8544415Z e[1Ae[2K
2021-01-27T07:17:22.8545097Z 	[6ac49c452ecc]: Extracting [>                                                  ]  557.1kB/101.3MB
2021-01-27T07:17:22.9625330Z e[1Ae[2K
2021-01-27T07:17:22.9626470Z 	[6ac49c452ecc]: Extracting [==>                                                ]  5.014MB/101.3MB
2021-01-27T07:17:23.0755690Z e[1Ae[2K
2021-01-27T07:17:23.0756280Z 	[6ac49c452ecc]: Extracting [=====>                                             ]  10.58MB/101.3MB
2021-01-27T07:17:23.1789865Z e[1Ae[2K
2021-01-27T07:17:23.1790437Z 	[6ac49c452ecc]: Extracting [=======>                                           ]  15.04MB/101.3MB
2021-01-27T07:17:23.2964193Z e[1Ae[2K
2021-01-27T07:17:23.2964768Z 	[6ac49c452ecc]: Extracting [=========>                                         ]  18.94MB/101.3MB
2021-01-27T07:17:23.4061739Z e[1Ae[2K
2021-01-27T07:17:23.4062316Z 	[6ac49c452ecc]: Extracting [==========>                                        ]  21.17MB/101.3MB
2021-01-27T07:17:23.5183188Z e[1Ae[2K
2021-01-27T07:17:23.5184048Z 	[6ac49c452ecc]: Extracting [=============>                                     ]  26.74MB/101.3MB
2021-01-27T07:17:23.6276180Z e[1Ae[2K
2021-01-27T07:17:23.6277116Z 	[6ac49c452ecc]: Extracting [===============>                                   ]   31.2MB/101.3MB
2021-01-27T07:17:23.7376323Z e[1Ae[2K
2021-01-27T07:17:23.7376968Z 	[6ac49c452ecc]: Extracting [==================>                                ]  36.77MB/101.3MB
2021-01-27T07:17:23.8468782Z e[1Ae[2K
2021-01-27T07:17:23.8469394Z 	[6ac49c452ecc]: Extracting [====================>                              ]  41.22MB/101.3MB
2021-01-27T07:17:23.9522246Z e[1Ae[2K
2021-01-27T07:17:23.9522859Z 	[6ac49c452ecc]: Extracting [======================>                            ]  46.24MB/101.3MB
2021-01-27T07:17:24.0588289Z e[1Ae[2K
2021-01-27T07:17:24.0589048Z 	[6ac49c452ecc]: Extracting [=========================>                         ]  51.81MB/101.3MB
2021-01-27T07:17:24.1667963Z e[1Ae[2K
2021-01-27T07:17:24.1668754Z 	[6ac49c452ecc]: Extracting [============================>                      ]  56.82MB/101.3MB
2021-01-27T07:17:24.2723278Z e[1Ae[2K
2021-01-27T07:17:24.2723867Z 	[6ac49c452ecc]: Extracting [==============================>                    ]  61.83MB/101.3MB
2021-01-27T07:17:24.3817641Z e[1Ae[2K
2021-01-27T07:17:24.3818199Z 	[6ac49c452ecc]: Extracting [=================================>                 ]   67.4MB/101.3MB
2021-01-27T07:17:24.4832695Z e[1Ae[2K
2021-01-27T07:17:24.4833255Z 	[6ac49c452ecc]: Extracting [===================================>               ]  72.42MB/101.3MB
2021-01-27T07:17:24.5871001Z e[1Ae[2K
2021-01-27T07:17:24.5871580Z 	[6ac49c452ecc]: Extracting [======================================>            ]  77.99MB/101.3MB
2021-01-27T07:17:24.7067371Z e[1Ae[2K
2021-01-27T07:17:24.7067971Z 	[6ac49c452ecc]: Extracting [========================================>          ]  81.33MB/101.3MB
2021-01-27T07:17:24.8251445Z e[1Ae[2K
2021-01-27T07:17:24.8252055Z 	[6ac49c452ecc]: Extracting [===========================================>       ]  88.57MB/101.3MB
2021-01-27T07:17:24.9298203Z e[1Ae[2K
2021-01-27T07:17:24.9299025Z 	[6ac49c452ecc]: Extracting [================================================>  ]  98.04MB/101.3MB
2021-01-27T07:17:25.0980193Z e[1Ae[2K
2021-01-27T07:17:25.0980817Z 	[6ac49c452ecc]: Extracting [=================================================> ]  100.8MB/101.3MB
2021-01-27T07:17:25.1225310Z e[1Ae[2K
2021-01-27T07:17:28.8566492Z 
2021-01-27T07:17:28.8621184Z 
2021-01-27T07:17:28.8621891Z 	[04a7bfd85c2e]: Extracting [>                                                  ]  65.54kB/6.16MB
2021-01-27T07:17:28.9596100Z e[1Ae[2K
2021-01-27T07:17:28.9596670Z 	[04a7bfd85c2e]: Extracting [========================>                          ]  3.015MB/6.16MB
2021-01-27T07:17:29.0343530Z e[1Ae[2K
2021-01-27T07:17:29.0357311Z 
2021-01-27T07:17:29.0563922Z 
2021-01-27T07:17:29.0593784Z 
2021-01-27T07:17:29.0601949Z 
2021-01-27T07:17:29.1250078Z 
2021-01-27T07:17:29.1269904Z 
2021-01-27T07:17:29.1270623Z 	[c7ed07de3a9e]: Extracting [>                                                  ]  65.54kB/6.16MB
2021-01-27T07:17:29.2276760Z e[1Ae[2K
2021-01-27T07:17:29.2277367Z 	[c7ed07de3a9e]: Extracting [===================>                               ]  2.359MB/6.16MB
2021-01-27T07:17:29.3124101Z e[1Ae[2K
2021-01-27T07:17:29.3139810Z 
2021-01-27T07:17:29.3285096Z 
2021-01-27T07:17:29.3311302Z 
2021-01-27T07:17:29.3363023Z 
2021-01-27T07:17:29.3370341Z 
2021-01-27T07:17:29.3370884Z > Pulling video recorder image...
2021-01-27T07:17:29.3372233Z - Pulling image selenoid/video-recorder:latest-release
2021-01-27T07:17:29.9085734Z 
2021-01-27T07:17:29.9089406Z 
2021-01-27T07:17:29.9091043Z 
2021-01-27T07:17:29.9091546Z 
2021-01-27T07:17:30.1676560Z 
2021-01-27T07:17:30.1680778Z 	[89d9c30c1d48]: Downloading [>                                                  ]  29.13kB/2.787MB
2021-01-27T07:17:30.1798860Z e[1Ae[2K
2021-01-27T07:17:30.1799415Z 	[cf624a2c1c08]: Downloading [>                                                  ]  23.65kB/2.353MB
2021-01-27T07:17:30.1832420Z e[1Ae[2K
2021-01-27T07:17:30.1832965Z 	[9e41a5b73974]: Downloading [>                                                  ]  72.93kB/6.947MB
2021-01-27T07:17:30.2683217Z e[1Ae[2K
2021-01-27T07:17:30.2683821Z 	[89d9c30c1d48]: Downloading [===============================>                   ]  1.751MB/2.787MB
2021-01-27T07:17:30.2757402Z e[1Ae[2K
2021-01-27T07:17:30.2769346Z 
2021-01-27T07:17:30.2772925Z 
2021-01-27T07:17:30.2819676Z 
2021-01-27T07:17:30.2819971Z 
2021-01-27T07:17:30.2828094Z 
2021-01-27T07:17:30.2828610Z 
2021-01-27T07:17:30.2828867Z 
2021-01-27T07:17:30.2829415Z 	[89d9c30c1d48]: Extracting [>                                                  ]  32.77kB/2.787MB
2021-01-27T07:17:30.3828756Z e[1Ae[2K
2021-01-27T07:17:30.3829317Z 	[89d9c30c1d48]: Extracting [============================================>      ]   2.49MB/2.787MB
2021-01-27T07:17:30.3934535Z e[1Ae[2K
2021-01-27T07:17:30.4233296Z 
2021-01-27T07:17:30.4246643Z 
2021-01-27T07:17:30.4247299Z 	[cf624a2c1c08]: Extracting [>                                                  ]  32.77kB/2.353MB
2021-01-27T07:17:30.5249508Z e[1Ae[2K
2021-01-27T07:17:30.5250484Z 	[cf624a2c1c08]: Extracting [================================================>  ]  2.261MB/2.353MB
2021-01-27T07:17:30.5282276Z e[1Ae[2K
2021-01-27T07:17:30.5319353Z 
2021-01-27T07:17:30.5516953Z 
2021-01-27T07:17:30.5517584Z 	[25c489f5925e]: Downloading [================================>                  ]     424B/643B
2021-01-27T07:17:30.5533003Z e[1Ae[2K
2021-01-27T07:17:30.5533273Z 
2021-01-27T07:17:30.5533505Z 
2021-01-27T07:17:30.5743253Z 
2021-01-27T07:17:30.5762509Z 
2021-01-27T07:17:30.5763117Z 	[9e41a5b73974]: Extracting [>                                                  ]   98.3kB/6.947MB
2021-01-27T07:17:30.6768183Z e[1Ae[2K
2021-01-27T07:17:30.6768750Z 	[9e41a5b73974]: Extracting [===================>                               ]  2.654MB/6.947MB
2021-01-27T07:17:30.7571958Z e[1Ae[2K
2021-01-27T07:17:30.7706088Z 
2021-01-27T07:17:30.7723728Z 
2021-01-27T07:17:30.7729245Z 
2021-01-27T07:17:30.8315144Z 
2021-01-27T07:17:30.8376731Z 
2021-01-27T07:17:30.8395933Z 
2021-01-27T07:17:30.8401428Z 
2021-01-27T07:17:30.8402593Z > Configuration saved to /home/runner/.aerokube/selenoid/browsers.json
2021-01-27T07:17:30.8407447Z > Starting Selenoid...
2021-01-27T07:17:36.9818360Z > Successfully started Selenoid
2021-01-27T07:17:37.0061210Z   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
2021-01-27T07:17:37.0064862Z                                  Dload  Upload   Total   Spent    Left  Speed
2021-01-27T07:17:37.0065740Z 
2021-01-27T07:17:37.0147453Z   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
2021-01-27T07:17:37.0151684Z {"total":5,"used":0,"queued":0,"pending":0,"browsers":{"chrome":{"87.0":{},"88.0":{}},"firefox":{"83.0":{},"84.0":{}},"opera":{"72.0":{},"73.0":{}}}}
2021-01-27T07:17:37.0153885Z 100   150  100   150    0     0  16666      0 --:--:-- --:--:-- --:--:-- 16666
2021-01-27T07:17:37.0202833Z ##[group]Run pytest test.py
2021-01-27T07:17:37.0203408Z e[36;1mpytest test.pye[0m
2021-01-27T07:17:37.0203961Z e[36;1mcontinue-on-error: truee[0m
2021-01-27T07:17:37.0245149Z shell: /bin/bash -e {0}
2021-01-27T07:17:37.0245564Z env:
2021-01-27T07:17:37.0246615Z   pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
2021-01-27T07:17:37.0247421Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
2021-01-27T07:17:37.0248003Z ##[endgroup]
2021-01-27T07:17:48.7907956Z ============================= test session starts ==============================
2021-01-27T07:17:48.7909499Z platform linux -- Python 3.9.1, pytest-6.2.2, py-1.10.0, pluggy-0.13.1
2021-01-27T07:17:48.7910717Z rootdir: /home/runner/work/website-testing-test/website-testing-test
2021-01-27T07:17:48.7911527Z collected 1 item
2021-01-27T07:17:48.7911833Z 
2021-01-27T07:17:48.8690035Z test.py F                                                                [100%]
2021-01-27T07:17:48.8691246Z 
2021-01-27T07:17:48.8692034Z =================================== FAILURES ===================================
2021-01-27T07:17:48.8692751Z __________________________________ test_title __________________________________
2021-01-27T07:17:48.8693246Z 
2021-01-27T07:17:48.8693816Z     def test_title():
2021-01-27T07:17:48.8695214Z >       driver.get('https://www.google.com/')
2021-01-27T07:17:48.8695893Z 
2021-01-27T07:17:48.8696427Z test.py:12: 
2021-01-27T07:17:48.8697036Z _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
2021-01-27T07:17:48.8698374Z /opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py:333: in get
2021-01-27T07:17:48.8699971Z     self.execute(Command.GET, {'url': url})
2021-01-27T07:17:48.8701476Z /opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py:321: in execute
2021-01-27T07:17:48.8702727Z     self.error_handler.check_response(response)
2021-01-27T07:17:48.8703518Z _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
2021-01-27T07:17:48.8703972Z 
2021-01-27T07:17:48.8705294Z self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x7f964139d040>
2021-01-27T07:17:48.8707146Z response = {'status': 404, 'value': '{"status":13,"value":{"message":"Session timed out or not found"}}\n'}
2021-01-27T07:17:48.8708152Z 
2021-01-27T07:17:48.8708814Z     def check_response(self, response):
2021-01-27T07:17:48.8709459Z         """
2021-01-27T07:17:48.8710944Z         Checks that a JSON response from the WebDriver does not have an error.
2021-01-27T07:17:48.8711680Z     
2021-01-27T07:17:48.8712130Z         :Args:
2021-01-27T07:17:48.8713197Z          - response - The JSON response from the WebDriver server as a dictionary
2021-01-27T07:17:48.8713967Z            object.
2021-01-27T07:17:48.8714447Z     
2021-01-27T07:17:48.8715446Z         :Raises: If the response contains an error message.
2021-01-27T07:17:48.8718091Z         """
2021-01-27T07:17:48.8719095Z         status = response.get('status', None)
2021-01-27T07:17:48.8722695Z         if status is None or status == ErrorCode.SUCCESS:
2021-01-27T07:17:48.8725129Z             return
2021-01-27T07:17:48.8726801Z         value = None
2021-01-27T07:17:48.8727452Z         message = response.get("message", "")
2021-01-27T07:17:48.8729028Z         screen = response.get("screen", "")
2021-01-27T07:17:48.8732116Z         stacktrace = None
2021-01-27T07:17:48.8734146Z         if isinstance(status, int):
2021-01-27T07:17:48.8736360Z             value_json = response.get('value', None)
2021-01-27T07:17:48.8740946Z             if value_json and isinstance(value_json, basestring):
2021-01-27T07:17:48.8741718Z                 import json
2021-01-27T07:17:48.8742224Z                 try:
2021-01-27T07:17:48.8742813Z                     value = json.loads(value_json)
2021-01-27T07:17:48.8743450Z                     if len(value.keys()) == 1:
2021-01-27T07:17:48.8744545Z                         value = value['value']
2021-01-27T07:17:48.8746563Z                     status = value.get('error', None)
2021-01-27T07:17:48.8748778Z                     if status is None:
2021-01-27T07:17:48.8749579Z                         status = value["status"]
2021-01-27T07:17:48.8750377Z                         message = value["value"]
2021-01-27T07:17:48.8751245Z                         if not isinstance(message, basestring):
2021-01-27T07:17:48.8752684Z                             value = message
2021-01-27T07:17:48.8754962Z                             message = message.get('message')
2021-01-27T07:17:48.8755770Z                     else:
2021-01-27T07:17:48.8756731Z                         message = value.get('message', None)
2021-01-27T07:17:48.8757526Z                 except ValueError:
2021-01-27T07:17:48.8758270Z                     pass
2021-01-27T07:17:48.8758795Z     
2021-01-27T07:17:48.8759616Z         exception_class = ErrorInResponseException
2021-01-27T07:17:48.8760642Z         if status in ErrorCode.NO_SUCH_ELEMENT:
2021-01-27T07:17:48.8761649Z             exception_class = NoSuchElementException
2021-01-27T07:17:48.8762662Z         elif status in ErrorCode.NO_SUCH_FRAME:
2021-01-27T07:17:48.8763642Z             exception_class = NoSuchFrameException
2021-01-27T07:17:48.8764613Z         elif status in ErrorCode.NO_SUCH_WINDOW:
2021-01-27T07:17:48.8768235Z             exception_class = NoSuchWindowException
2021-01-27T07:17:48.8769095Z         elif status in ErrorCode.STALE_ELEMENT_REFERENCE:
2021-01-27T07:17:48.8770004Z             exception_class = StaleElementReferenceException
2021-01-27T07:17:48.8770917Z         elif status in ErrorCode.ELEMENT_NOT_VISIBLE:
2021-01-27T07:17:48.8771754Z             exception_class = ElementNotVisibleException
2021-01-27T07:17:48.8772604Z         elif status in ErrorCode.INVALID_ELEMENT_STATE:
2021-01-27T07:17:48.8773475Z             exception_class = InvalidElementStateException
2021-01-27T07:17:48.8774335Z         elif status in ErrorCode.INVALID_SELECTOR \
2021-01-27T07:17:48.8775076Z                 or status in ErrorCode.INVALID_XPATH_SELECTOR \
2021-01-27T07:17:48.8775895Z                 or status in ErrorCode.INVALID_XPATH_SELECTOR_RETURN_TYPER:
2021-01-27T07:17:48.8776746Z             exception_class = InvalidSelectorException
2021-01-27T07:17:48.8777569Z         elif status in ErrorCode.ELEMENT_IS_NOT_SELECTABLE:
2021-01-27T07:17:48.8778644Z             exception_class = ElementNotSelectableException
2021-01-27T07:17:48.8800991Z         elif status in ErrorCode.ELEMENT_NOT_INTERACTABLE:
2021-01-27T07:17:48.8802076Z             exception_class = ElementNotInteractableException
2021-01-27T07:17:48.8802992Z         elif status in ErrorCode.INVALID_COOKIE_DOMAIN:
2021-01-27T07:17:48.8803882Z             exception_class = InvalidCookieDomainException
2021-01-27T07:17:48.8804722Z         elif status in ErrorCode.UNABLE_TO_SET_COOKIE:
2021-01-27T07:17:48.8805561Z             exception_class = UnableToSetCookieException
2021-01-27T07:17:48.8806348Z         elif status in ErrorCode.TIMEOUT:
2021-01-27T07:17:48.8807012Z             exception_class = TimeoutException
2021-01-27T07:17:48.8807788Z         elif status in ErrorCode.SCRIPT_TIMEOUT:
2021-01-27T07:17:48.8808470Z             exception_class = TimeoutException
2021-01-27T07:17:48.8809154Z         elif status in ErrorCode.UNKNOWN_ERROR:
2021-01-27T07:17:48.8809855Z             exception_class = WebDriverException
2021-01-27T07:17:48.8810623Z         elif status in ErrorCode.UNEXPECTED_ALERT_OPEN:
2021-01-27T07:17:48.8811570Z             exception_class = UnexpectedAlertPresentException
2021-01-27T07:17:48.8812452Z         elif status in ErrorCode.NO_ALERT_OPEN:
2021-01-27T07:17:48.8813190Z             exception_class = NoAlertPresentException
2021-01-27T07:17:48.8813946Z         elif status in ErrorCode.IME_NOT_AVAILABLE:
2021-01-27T07:17:48.8814727Z             exception_class = ImeNotAvailableException
2021-01-27T07:17:48.8815540Z         elif status in ErrorCode.IME_ENGINE_ACTIVATION_FAILED:
2021-01-27T07:17:48.8816596Z             exception_class = ImeActivationFailedException
2021-01-27T07:17:48.8817456Z         elif status in ErrorCode.MOVE_TARGET_OUT_OF_BOUNDS:
2021-01-27T07:17:48.8818361Z             exception_class = MoveTargetOutOfBoundsException
2021-01-27T07:17:48.8819259Z         elif status in ErrorCode.JAVASCRIPT_ERROR:
2021-01-27T07:17:48.8820139Z             exception_class = JavascriptException
2021-01-27T07:17:48.8820867Z         elif status in ErrorCode.SESSION_NOT_CREATED:
2021-01-27T07:17:48.8821710Z             exception_class = SessionNotCreatedException
2021-01-27T07:17:48.8822526Z         elif status in ErrorCode.INVALID_ARGUMENT:
2021-01-27T07:17:48.8823309Z             exception_class = InvalidArgumentException
2021-01-27T07:17:48.8824070Z         elif status in ErrorCode.NO_SUCH_COOKIE:
2021-01-27T07:17:48.8824781Z             exception_class = NoSuchCookieException
2021-01-27T07:17:48.8825564Z         elif status in ErrorCode.UNABLE_TO_CAPTURE_SCREEN:
2021-01-27T07:17:48.8826314Z             exception_class = ScreenshotException
2021-01-27T07:17:48.8827091Z         elif status in ErrorCode.ELEMENT_CLICK_INTERCEPTED:
2021-01-27T07:17:48.8828055Z             exception_class = ElementClickInterceptedException
2021-01-27T07:17:48.8829011Z         elif status in ErrorCode.INSECURE_CERTIFICATE:
2021-01-27T07:17:48.8829898Z             exception_class = InsecureCertificateException
2021-01-27T07:17:48.8830769Z         elif status in ErrorCode.INVALID_COORDINATES:
2021-01-27T07:17:48.8831632Z             exception_class = InvalidCoordinatesException
2021-01-27T07:17:48.8832460Z         elif status in ErrorCode.INVALID_SESSION_ID:
2021-01-27T07:17:48.8833276Z             exception_class = InvalidSessionIdException
2021-01-27T07:17:48.8834066Z         elif status in ErrorCode.UNKNOWN_METHOD:
2021-01-27T07:17:48.8834829Z             exception_class = UnknownMethodException
2021-01-27T07:17:48.8835420Z         else:
2021-01-27T07:17:48.8835976Z             exception_class = WebDriverException
2021-01-27T07:17:48.8836936Z         if value == '' or value is None:
2021-01-27T07:17:48.8837614Z             value = response['value']
2021-01-27T07:17:48.8838906Z         if isinstance(value, basestring):
2021-01-27T07:17:48.8840000Z             if exception_class == ErrorInResponseException:
2021-01-27T07:17:48.8840809Z                 raise exception_class(response, value)
2021-01-27T07:17:48.8841571Z             raise exception_class(value)
2021-01-27T07:17:48.8842394Z         if message == "" and 'message' in value:
2021-01-27T07:17:48.8843098Z             message = value['message']
2021-01-27T07:17:48.8843530Z     
2021-01-27T07:17:48.8843893Z         screen = None
2021-01-27T07:17:48.8844475Z         if 'screen' in value:
2021-01-27T07:17:48.8845123Z             screen = value['screen']
2021-01-27T07:17:48.8845524Z     
2021-01-27T07:17:48.8845917Z         stacktrace = None
2021-01-27T07:17:48.8846662Z         if 'stackTrace' in value and value['stackTrace']:
2021-01-27T07:17:48.8847228Z             stacktrace = []
2021-01-27T07:17:48.8847626Z             try:
2021-01-27T07:17:48.8848258Z                 for frame in value['stackTrace']:
2021-01-27T07:17:48.8849110Z                     line = self._value_or_default(frame, 'lineNumber', '')
2021-01-27T07:17:48.8850060Z                     file = self._value_or_default(frame, 'fileName', '<anonymous>')
2021-01-27T07:17:48.8850666Z                     if line:
2021-01-27T07:17:48.8851114Z                         file = "%s:%s" % (file, line)
2021-01-27T07:17:48.8851973Z                     meth = self._value_or_default(frame, 'methodName', '<anonymous>')
2021-01-27T07:17:48.8852795Z                     if 'className' in frame:
2021-01-27T07:17:48.8853557Z                         meth = "%s.%s" % (frame['className'], meth)
2021-01-27T07:17:48.8854059Z                     msg = "    at %s (%s)"
2021-01-27T07:17:48.8854500Z                     msg = msg % (meth, file)
2021-01-27T07:17:48.8855048Z                     stacktrace.append(msg)
2021-01-27T07:17:48.8855589Z             except TypeError:
2021-01-27T07:17:48.8856117Z                 pass
2021-01-27T07:17:48.8856758Z         if exception_class == ErrorInResponseException:
2021-01-27T07:17:48.8857562Z             raise exception_class(response, message)
2021-01-27T07:17:48.8858480Z         elif exception_class == UnexpectedAlertPresentException:
2021-01-27T07:17:48.8859276Z             alert_text = None
2021-01-27T07:17:48.8914845Z             if 'data' in value:
2021-01-27T07:17:48.8915560Z                 alert_text = value['data'].get('text')
2021-01-27T07:17:48.8916258Z             elif 'alert' in value:
2021-01-27T07:17:48.8916963Z                 alert_text = value['alert'].get('text')
2021-01-27T07:17:48.8917688Z             raise exception_class(message, screen, stacktrace, alert_text)
2021-01-27T07:17:48.8918474Z >       raise exception_class(message, screen, stacktrace)
2021-01-27T07:17:48.8919738Z E       selenium.common.exceptions.WebDriverException: Message: Session timed out or not found
2021-01-27T07:17:48.8920660Z 
2021-01-27T07:17:48.8921902Z /opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/selenium/webdriver/remote/errorhandler.py:242: WebDriverException
2021-01-27T07:17:48.8922962Z =========================== short test summary info ============================
2021-01-27T07:17:48.8924728Z FAILED test.py::test_title - selenium.common.exceptions.WebDriverException: M...
2021-01-27T07:17:48.8925817Z ============================== 1 failed in 11.65s ==============================
2021-01-27T07:17:48.9088907Z ##[error]Process completed with exit code 1.
2021-01-27T07:17:48.9204551Z Post job cleanup.
2021-01-27T07:17:49.0687616Z [command]/usr/bin/git version
2021-01-27T07:17:49.0738829Z git version 2.29.2
2021-01-27T07:17:49.0778879Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-01-27T07:17:49.0821110Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-01-27T07:17:49.1177554Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-01-27T07:17:49.1210749Z http.https://github.com/.extraheader
2021-01-27T07:17:49.1221276Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2021-01-27T07:17:49.1260867Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2021-01-27T07:17:49.1661646Z Cleaning up orphan processes
1_Set up job
2021-01-27T07:16:01.7022218Z Current runner version: '2.276.1'
2021-01-27T07:16:01.7110324Z ##[group]Operating System
2021-01-27T07:16:01.7111395Z Ubuntu
2021-01-27T07:16:01.7111896Z 18.04.5
2021-01-27T07:16:01.7112346Z LTS
2021-01-27T07:16:01.7112891Z ##[endgroup]
2021-01-27T07:16:01.7113481Z ##[group]Virtual Environment
2021-01-27T07:16:01.7114199Z Environment: ubuntu-18.04
2021-01-27T07:16:01.7114800Z Version: 20201210.0
2021-01-27T07:16:01.7115953Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu18/20201210.0/images/linux/Ubuntu1804-README.md
2021-01-27T07:16:01.7117009Z ##[endgroup]
2021-01-27T07:16:01.7121881Z Prepare workflow directory
2021-01-27T07:16:01.7886331Z Prepare all required actions
2021-01-27T07:16:01.7898124Z Getting action download info
2021-01-27T07:16:02.1810935Z Download action repository 'actions/setup-python@v2'
2021-01-27T07:16:04.4062693Z Download action repository 'actions/checkout@v2'
2_Install Python

2021-01-27T07:16:05.0864419Z ##[group]Run actions/setup-python@v2
2021-01-27T07:16:05.0865211Z with:
2021-01-27T07:16:05.0865810Z python-version: 3.x
2021-01-27T07:16:05.0866368Z architecture: x64
2021-01-27T07:16:05.0867344Z token: ***
2021-01-27T07:16:05.0867818Z ##[endgroup]
2021-01-27T07:16:06.7417500Z Successfully setup CPython (3.9.1)

3_Install Dependencies
2021-01-27T07:16:06.7608699Z ##[group]Run python -m pip install -U pip
2021-01-27T07:16:06.7609479Z e[36;1mpython -m pip install -U pipe[0m
2021-01-27T07:16:06.7610176Z e[36;1mpip install -U pytest selenium flake8 pylinte[0m
2021-01-27T07:16:06.7656191Z shell: /bin/bash -e {0}
2021-01-27T07:16:06.7656735Z env:
2021-01-27T07:16:06.7657403Z   pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
2021-01-27T07:16:06.7658285Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
2021-01-27T07:16:06.7658944Z ##[endgroup]
2021-01-27T07:16:08.8514765Z Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages (20.3.1)
2021-01-27T07:16:09.9946104Z Collecting pip
2021-01-27T07:16:10.0663875Z   Downloading pip-21.0-py3-none-any.whl (1.5 MB)
2021-01-27T07:16:10.3435411Z Installing collected packages: pip
2021-01-27T07:16:10.3436951Z   Attempting uninstall: pip
2021-01-27T07:16:10.3438029Z     Found existing installation: pip 20.3.1
2021-01-27T07:16:10.5002413Z     Uninstalling pip-20.3.1:
2021-01-27T07:16:10.5227234Z       Successfully uninstalled pip-20.3.1
2021-01-27T07:16:11.6564581Z Successfully installed pip-21.0
2021-01-27T07:16:12.7309169Z Collecting pytest
2021-01-27T07:16:12.8025859Z   Downloading pytest-6.2.2-py3-none-any.whl (280 kB)
2021-01-27T07:16:13.0070489Z Collecting selenium
2021-01-27T07:16:13.0275611Z   Downloading selenium-3.141.0-py2.py3-none-any.whl (904 kB)
2021-01-27T07:16:13.3043364Z Collecting flake8
2021-01-27T07:16:13.3234730Z   Downloading flake8-3.8.4-py2.py3-none-any.whl (72 kB)
2021-01-27T07:16:13.5338537Z Collecting pylint
2021-01-27T07:16:13.5533251Z   Downloading pylint-2.6.0-py3-none-any.whl (325 kB)
2021-01-27T07:16:13.6512849Z Collecting pyflakes<2.3.0,>=2.2.0
2021-01-27T07:16:13.6687753Z   Downloading pyflakes-2.2.0-py2.py3-none-any.whl (66 kB)
2021-01-27T07:16:13.7158035Z Collecting pycodestyle<2.7.0,>=2.6.0a1
2021-01-27T07:16:13.7388990Z   Downloading pycodestyle-2.6.0-py2.py3-none-any.whl (41 kB)
2021-01-27T07:16:13.7822110Z Collecting mccabe<0.7.0,>=0.6.0
2021-01-27T07:16:13.8000668Z   Downloading mccabe-0.6.1-py2.py3-none-any.whl (8.6 kB)
2021-01-27T07:16:13.8952532Z Collecting astroid<=2.5,>=2.4.0
2021-01-27T07:16:13.9134063Z   Downloading astroid-2.4.2-py3-none-any.whl (213 kB)
2021-01-27T07:16:14.1418321Z Collecting isort<6,>=4.2.5
2021-01-27T07:16:14.1597651Z   Downloading isort-5.7.0-py3-none-any.whl (104 kB)
2021-01-27T07:16:14.2103707Z Collecting toml>=0.7.1
2021-01-27T07:16:14.2279452Z   Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB)
2021-01-27T07:16:14.2736800Z Collecting wrapt~=1.11
2021-01-27T07:16:14.2974631Z   Downloading wrapt-1.12.1.tar.gz (27 kB)
2021-01-27T07:16:15.5183779Z Collecting lazy-object-proxy==1.4.*
2021-01-27T07:16:15.5364481Z   Downloading lazy-object-proxy-1.4.3.tar.gz (34 kB)
2021-01-27T07:16:15.5548203Z   Installing build dependencies: started
2021-01-27T07:16:17.8008485Z   Installing build dependencies: finished with status 'done'
2021-01-27T07:16:17.8077827Z   Getting requirements to build wheel: started
2021-01-27T07:16:17.9829715Z   Getting requirements to build wheel: finished with status 'done'
2021-01-27T07:16:17.9866230Z     Preparing wheel metadata: started
2021-01-27T07:16:19.3455158Z     Preparing wheel metadata: finished with status 'done'
2021-01-27T07:16:19.4057861Z Collecting six~=1.12
2021-01-27T07:16:19.4240106Z   Downloading six-1.15.0-py2.py3-none-any.whl (10 kB)
2021-01-27T07:16:19.5271628Z Collecting attrs>=19.2.0
2021-01-27T07:16:19.5451215Z   Downloading attrs-20.3.0-py2.py3-none-any.whl (49 kB)
2021-01-27T07:16:19.6594932Z Collecting packaging
2021-01-27T07:16:19.6770726Z   Downloading packaging-20.8-py2.py3-none-any.whl (39 kB)
2021-01-27T07:16:19.7175688Z Collecting iniconfig
2021-01-27T07:16:19.7350564Z   Downloading iniconfig-1.1.1-py2.py3-none-any.whl (5.0 kB)
2021-01-27T07:16:19.7883777Z Collecting pluggy<1.0.0a1,>=0.12
2021-01-27T07:16:19.8074320Z   Downloading pluggy-0.13.1-py2.py3-none-any.whl (18 kB)
2021-01-27T07:16:19.8713456Z Collecting py>=1.8.2
2021-01-27T07:16:19.8939499Z   Downloading py-1.10.0-py2.py3-none-any.whl (97 kB)
2021-01-27T07:16:20.0912744Z Collecting urllib3
2021-01-27T07:16:20.1092107Z   Downloading urllib3-1.26.3-py2.py3-none-any.whl (137 kB)
2021-01-27T07:16:20.2652797Z Collecting pyparsing>=2.0.2
2021-01-27T07:16:20.2831119Z   Downloading pyparsing-2.4.7-py2.py3-none-any.whl (67 kB)
2021-01-27T07:16:20.3229376Z Using legacy 'setup.py install' for wrapt, since package 'wheel' is not installed.
2021-01-27T07:16:20.3231400Z Building wheels for collected packages: lazy-object-proxy
2021-01-27T07:16:20.3251179Z   Building wheel for lazy-object-proxy (PEP 517): started
2021-01-27T07:16:23.6372090Z   Building wheel for lazy-object-proxy (PEP 517): finished with status 'done'
2021-01-27T07:16:23.6392224Z   Created wheel for lazy-object-proxy: filename=lazy_object_proxy-1.4.3-cp39-cp39-linux_x86_64.whl size=52847 sha256=4b75b1ec93ce69dbbd80f25ecd8d22b89e710c0c31a18cb5f6abb3d0f41b65d7
2021-01-27T07:16:23.6400468Z   Stored in directory: /home/runner/.cache/pip/wheels/41/20/07/2a3e02cdfc8b442404202f6ef99ff1b1c16b73910968a46f2f
2021-01-27T07:16:23.6425654Z Successfully built lazy-object-proxy
2021-01-27T07:16:23.7607467Z Installing collected packages: wrapt, six, pyparsing, lazy-object-proxy, urllib3, toml, pyflakes, pycodestyle, py, pluggy, packaging, mccabe, isort, iniconfig, attrs, astroid, selenium, pytest, pylint, flake8
2021-01-27T07:16:23.7614962Z     Running setup.py install for wrapt: started
2021-01-27T07:16:24.8336358Z     Running setup.py install for wrapt: finished with status 'done'
2021-01-27T07:16:26.2905013Z Successfully installed astroid-2.4.2 attrs-20.3.0 flake8-3.8.4 iniconfig-1.1.1 isort-5.7.0 lazy-object-proxy-1.4.3 mccabe-0.6.1 packaging-20.8 pluggy-0.13.1 py-1.10.0 pycodestyle-2.6.0 pyflakes-2.2.0 pylint-2.6.0 pyparsing-2.4.7 pytest-6.2.2 selenium-3.141.0 six-1.15.0 toml-0.10.2 urllib3-1.26.3 wrapt-1.12.1
4_Check out and download repository
2021-01-27T07:16:26.3976073Z ##[group]Run actions/checkout@v2
2021-01-27T07:16:26.3976600Z with:
2021-01-27T07:16:26.3977162Z   repository: ******/website-testing-test
2021-01-27T07:16:26.3978188Z   token: ***
2021-01-27T07:16:26.3978591Z   ssh-strict: true
2021-01-27T07:16:26.3979123Z   persist-credentials: true
2021-01-27T07:16:26.3980317Z   clean: true
2021-01-27T07:16:26.3980735Z   fetch-depth: 1
2021-01-27T07:16:26.3981135Z   lfs: false
2021-01-27T07:16:26.3981550Z   submodules: false
2021-01-27T07:16:26.3981936Z env:
2021-01-27T07:16:26.3982494Z   pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
2021-01-27T07:16:26.3983269Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
2021-01-27T07:16:26.3983835Z ##[endgroup]
2021-01-27T07:16:26.6461157Z Syncing repository: amegafx/website-testing-test
2021-01-27T07:16:26.6506097Z ##[group]Getting Git version info
2021-01-27T07:16:26.6508363Z Working directory is '/home/runner/work/website-testing-test/website-testing-test'
2021-01-27T07:16:26.6585897Z [command]/usr/bin/git version
2021-01-27T07:16:26.6635022Z git version 2.29.2
2021-01-27T07:16:26.6657676Z ##[endgroup]
2021-01-27T07:16:26.6665041Z Deleting the contents of '/home/runner/work/website-testing-test/website-testing-test'
2021-01-27T07:16:26.6669370Z ##[group]Initializing the repository
2021-01-27T07:16:26.6674066Z [command]/usr/bin/git init /home/runner/work/website-testing-test/website-testing-test
2021-01-27T07:16:26.7640636Z Initialized empty Git repository in /home/runner/work/website-testing-test/website-testing-test/.git/
2021-01-27T07:16:26.7651899Z [command]/usr/bin/git remote add origin https://github.com/amegafx/website-testing-test
2021-01-27T07:16:26.7707592Z ##[endgroup]
2021-01-27T07:16:26.7708400Z ##[group]Disabling automatic garbage collection
2021-01-27T07:16:26.7714030Z [command]/usr/bin/git config --local gc.auto 0
2021-01-27T07:16:26.7805820Z ##[endgroup]
2021-01-27T07:16:26.7811274Z ##[group]Setting up auth
2021-01-27T07:16:26.7818365Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-01-27T07:16:26.7861243Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-01-27T07:16:27.0079772Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-01-27T07:16:27.0142845Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2021-01-27T07:16:27.0421776Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2021-01-27T07:16:27.0571585Z ##[endgroup]
2021-01-27T07:16:27.0572793Z ##[group]Fetching the repository
2021-01-27T07:16:27.0584765Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +d7700f295df06dc5119b535878dfd9fbc8813d56:refs/remotes/origin/main
2021-01-27T07:16:27.6823131Z remote: Enumerating objects: 8, done.        
2021-01-27T07:16:27.6826722Z remote: Counting objects:  12% (1/8)        
2021-01-27T07:16:27.6827539Z remote: Counting objects:  25% (2/8)        
2021-01-27T07:16:27.6828297Z remote: Counting objects:  37% (3/8)        
2021-01-27T07:16:27.6829037Z remote: Counting objects:  50% (4/8)        
2021-01-27T07:16:27.6829792Z remote: Counting objects:  62% (5/8)        
2021-01-27T07:16:27.6830525Z remote: Counting objects:  75% (6/8)        
2021-01-27T07:16:27.6831260Z remote: Counting objects:  87% (7/8)        
2021-01-27T07:16:27.6832009Z remote: Counting objects: 100% (8/8)        
2021-01-27T07:16:27.6832773Z remote: Counting objects: 100% (8/8), done.        
2021-01-27T07:16:27.6833589Z remote: Compressing objects:  16% (1/6)        
2021-01-27T07:16:27.6834415Z remote: Compressing objects:  33% (2/6)        
2021-01-27T07:16:27.6835227Z remote: Compressing objects:  50% (3/6)        
2021-01-27T07:16:27.6836356Z remote: Compressing objects:  66% (4/6)        
2021-01-27T07:16:27.6836952Z remote: Compressing objects:  83% (5/6)        
2021-01-27T07:16:27.6837526Z remote: Compressing objects: 100% (6/6)        
2021-01-27T07:16:27.6838159Z remote: Compressing objects: 100% (6/6), done.        
2021-01-27T07:16:27.6941393Z remote: Total 8 (delta 0), reused 7 (delta 0), pack-reused 0        
2021-01-27T07:16:27.7547268Z From https://github.com/******/website-testing-test
2021-01-27T07:16:27.7548874Z  * [new ref]         d7700f295df06dc5119b535878dfd9fbc8813d56 -> origin/main
2021-01-27T07:16:27.7666039Z ##[endgroup]
2021-01-27T07:16:27.7667144Z ##[group]Determining the checkout info
2021-01-27T07:16:27.7668797Z ##[endgroup]
2021-01-27T07:16:27.7669540Z ##[group]Checking out the ref
2021-01-27T07:16:27.7671541Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main
2021-01-27T07:16:27.7801178Z Switched to a new branch 'main'
2021-01-27T07:16:27.7863954Z Branch 'main' set up to track remote branch 'main' from 'origin'.
2021-01-27T07:16:27.7881082Z ##[endgroup]
2021-01-27T07:16:27.7989186Z [command]/usr/bin/git log -1 --format='%H'
2021-01-27T07:16:27.8024232Z 'd7700f295df06dc5119b535878dfd9fbc8813d56'
5_Check code
2021-01-27T07:16:27.8123422Z ##[group]Run flake8 --exit-zero test.py
2021-01-27T07:16:27.8124115Z e[36;1mflake8 --exit-zero test.pye[0m
2021-01-27T07:16:27.8124699Z e[36;1mpylint --errors-only test.pye[0m
2021-01-27T07:16:27.8166509Z shell: /bin/bash -e {0}
2021-01-27T07:16:27.8166930Z env:
2021-01-27T07:16:27.8167503Z   pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
2021-01-27T07:16:27.8168288Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
2021-01-27T07:16:27.8168861Z ##[endgroup]
6_Start Selenoid
2021-01-27T07:16:29.5084974Z ##[group]Run wget --no-check-certificate -O cm https://github.com/aerokube/cm/releases/latest/download/cm_linux_amd64
2021-01-27T07:16:29.5086559Z e[36;1mwget --no-check-certificate -O cm https://github.com/aerokube/cm/releases/latest/download/cm_linux_amd64e[0m
2021-01-27T07:16:29.5087468Z e[36;1mchmod +x cme[0m
2021-01-27T07:16:29.5088021Z e[36;1m./cm selenoid start --args "-timeout 300s"e[0m
2021-01-27T07:16:29.5088790Z e[36;1mcurl http://localhost:4444/statuse[0m
2021-01-27T07:16:29.5169806Z shell: /bin/bash -e {0}
2021-01-27T07:16:29.5170641Z env:
2021-01-27T07:16:29.5171906Z   pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
2021-01-27T07:16:29.5173460Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
2021-01-27T07:16:29.5174783Z ##[endgroup]
2021-01-27T07:16:29.5353863Z --2021-01-27 07:16:29--  https://github.com/aerokube/cm/releases/latest/download/cm_linux_amd64
2021-01-27T07:16:29.5379855Z Resolving github.com (github.com)... 140.82.113.3
2021-01-27T07:16:29.5729253Z Connecting to github.com (github.com)|140.82.113.3|:443... connected.
2021-01-27T07:16:29.7247049Z HTTP request sent, awaiting response... 302 Found
2021-01-27T07:16:29.7418853Z Location: https://github.com/aerokube/cm/releases/download/1.7.2/cm_linux_amd64 [following]
2021-01-27T07:16:29.7422262Z --2021-01-27 07:16:29--  https://github.com/aerokube/cm/releases/download/1.7.2/cm_linux_amd64
2021-01-27T07:16:29.7424027Z Reusing existing connection to github.com:443.
2021-01-27T07:16:29.7852308Z HTTP request sent, awaiting response... 302 Found
2021-01-27T07:16:29.7861820Z Location: https://github-production-release-asset-2e65be.s3.amazonaws.com/88080929/39161580-c104-11ea-8890-d0d755774c6a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210127%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210127T071435Z&X-Amz-Expires=300&X-Amz-Signature=0666aea98a565bc1935016d8856cc415da29e0514bc4c2ff74a0b623b9500b99&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=88080929&response-content-disposition=attachment%3B%20filename%3Dcm_linux_amd64&response-content-type=application%2Foctet-stream [following]
2021-01-27T07:16:29.7877248Z --2021-01-27 07:16:29--  https://github-production-release-asset-2e65be.s3.amazonaws.com/88080929/39161580-c104-11ea-8890-d0d755774c6a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210127%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210127T071435Z&X-Amz-Expires=300&X-Amz-Signature=0666aea98a565bc1935016d8856cc415da29e0514bc4c2ff74a0b623b9500b99&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=88080929&response-content-disposition=attachment%3B%20filename%3Dcm_linux_amd64&response-content-type=application%2Foctet-stream
2021-01-27T07:16:29.8224567Z Resolving github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)... 52.217.4.12
2021-01-27T07:16:29.8627375Z Connecting to github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)|52.217.4.12|:443... connected.
2021-01-27T07:16:30.0000220Z HTTP request sent, awaiting response... 200 OK
2021-01-27T07:16:30.0001857Z Length: 12701696 (12M) [application/octet-stream]
2021-01-27T07:16:30.0073360Z Saving to: ‘cm’
2021-01-27T07:16:30.0073874Z 
2021-01-27T07:16:30.0800847Z      0K .......... .......... .......... .......... ..........  0% 1.21M 10s
2021-01-27T07:16:30.0804959Z     50K .......... .......... .......... .......... ..........  0% 1.22M 10s
2021-01-27T07:16:30.1200807Z    100K .......... .......... .......... .......... ..........  1% 1.23M 10s
2021-01-27T07:16:30.1204393Z    150K .......... .......... .......... .......... ..........  1%  109M 7s
2021-01-27T07:16:30.1602501Z    200K .......... .......... .......... .......... ..........  2% 1.23M 8s
2021-01-27T07:16:30.1612219Z    250K .......... .......... .......... .......... ..........  2% 52.5M 7s
2021-01-27T07:16:30.1620010Z    300K .......... .......... .......... .......... ..........  2% 55.1M 6s
2021-01-27T07:16:30.1627378Z    350K .......... .......... .......... .......... ..........  3% 62.4M 5s
2021-01-27T07:16:30.1634996Z    400K .......... .......... .......... .......... ..........  3% 65.1M 4s
2021-01-27T07:16:30.2002998Z    450K .......... .......... .......... .......... ..........  4% 1.33M 5s
2021-01-27T07:16:30.2014935Z    500K .......... .......... .......... .......... ..........  4% 39.5M 4s
2021-01-27T07:16:30.2023191Z    550K .......... .......... .......... .......... ..........  4% 51.2M 4s
2021-01-27T07:16:30.2030059Z    600K .......... .......... .......... .......... ..........  5% 70.7M 4s
2021-01-27T07:16:30.2040856Z    650K .......... .......... .......... .......... ..........  5% 46.8M 3s
2021-01-27T07:16:30.2051142Z    700K .......... .......... .......... .......... ..........  6% 52.0M 3s
2021-01-27T07:16:30.2057002Z    750K .......... .......... .......... .......... ..........  6% 75.4M 3s
2021-01-27T07:16:30.2063450Z    800K .......... .......... .......... .......... ..........  6% 74.9M 3s
2021-01-27T07:16:30.2069579Z    850K .......... .......... .......... .......... ..........  7% 85.1M 3s
2021-01-27T07:16:30.2075250Z    900K .......... .......... .......... .......... ..........  7% 87.3M 3s
2021-01-27T07:16:30.2407062Z    950K .......... .......... .......... .......... ..........  8% 1.47M 3s
2021-01-27T07:16:30.2412060Z   1000K .......... .......... .......... .......... ..........  8% 94.8M 3s
2021-01-27T07:16:30.2416986Z   1050K .......... .......... .......... .......... ..........  8% 81.8M 2s
2021-01-27T07:16:30.2422476Z   1100K .......... .......... .......... .......... ..........  9% 90.5M 2s
2021-01-27T07:16:30.2427288Z   1150K .......... .......... .......... .......... ..........  9%  101M 2s
2021-01-27T07:16:30.2432075Z   1200K .......... .......... .......... .......... .......... 10%  110M 2s
2021-01-27T07:16:30.2437055Z   1250K .......... .......... .......... .......... .......... 10% 92.6M 2s
2021-01-27T07:16:30.2441952Z   1300K .......... .......... .......... .......... .......... 10%  103M 2s
2021-01-27T07:16:30.2446284Z   1350K .......... .......... .......... .......... .......... 11%  106M 2s
2021-01-27T07:16:30.2450118Z   1400K .......... .......... .......... .......... .......... 11%  122M 2s
2021-01-27T07:16:30.2455081Z   1450K .......... .......... .......... .......... .......... 12%  103M 2s
2021-01-27T07:16:30.2459650Z   1500K .......... .......... .......... .......... .......... 12%  105M 2s
2021-01-27T07:16:30.2463643Z   1550K .......... .......... .......... .......... .......... 12%  121M 2s
2021-01-27T07:16:30.2467169Z   1600K .......... .......... .......... .......... .......... 13%  135M 2s
2021-01-27T07:16:30.2471149Z   1650K .......... .......... .......... .......... .......... 13%  136M 2s
2021-01-27T07:16:30.2474495Z   1700K .......... .......... .......... .......... .......... 14%  131M 2s
2021-01-27T07:16:30.2478147Z   1750K .......... .......... .......... .......... .......... 14%  138M 1s
2021-01-27T07:16:30.2481745Z   1800K .......... .......... .......... .......... .......... 14%  132M 1s
2021-01-27T07:16:30.2485862Z   1850K .......... .......... .......... .......... .......... 15%  135M 1s
2021-01-27T07:16:30.2811934Z   1900K .......... .......... .......... .......... .......... 15% 1.50M 2s
2021-01-27T07:16:30.2821316Z   1950K .......... .......... .......... .......... .......... 16% 46.7M 1s
2021-01-27T07:16:30.2827665Z   2000K .......... .......... .......... .......... .......... 16% 76.7M 1s
2021-01-27T07:16:30.2833997Z   2050K .......... .......... .......... .......... .......... 16% 80.2M 1s
2021-01-27T07:16:30.2840462Z   2100K .......... .......... .......... .......... .......... 17% 75.7M 1s
2021-01-27T07:16:30.2847709Z   2150K .......... .......... .......... .......... .......... 17% 63.7M 1s
2021-01-27T07:16:30.2855360Z   2200K .......... .......... .......... .......... .......... 18% 65.3M 1s
2021-01-27T07:16:30.2866087Z   2250K .......... .......... .......... .......... .......... 18% 59.6M 1s
2021-01-27T07:16:30.2873911Z   2300K .......... .......... .......... .......... .......... 18% 46.9M 1s
2021-01-27T07:16:30.2882460Z   2350K .......... .......... .......... .......... .......... 19% 56.7M 1s
2021-01-27T07:16:30.2890763Z   2400K .......... .......... .......... .......... .......... 19% 60.3M 1s
2021-01-27T07:16:30.2896309Z   2450K .......... .......... .......... .......... .......... 20% 81.9M 1s
2021-01-27T07:16:30.2900006Z   2500K .......... .......... .......... .......... .......... 20%  128M 1s
2021-01-27T07:16:30.2908180Z   2550K .......... .......... .......... .......... .......... 20% 59.9M 1s
2021-01-27T07:16:30.2914452Z   2600K .......... .......... .......... .......... .......... 21% 77.6M 1s
2021-01-27T07:16:30.2918433Z   2650K .......... .......... .......... .......... .......... 21%  130M 1s
2021-01-27T07:16:30.2921877Z   2700K .......... .......... .......... .......... .......... 22%  126M 1s
2021-01-27T07:16:30.2925373Z   2750K .......... .......... .......... .......... .......... 22%  140M 1s
2021-01-27T07:16:30.2928941Z   2800K .......... .......... .......... .......... .......... 22%  140M 1s
2021-01-27T07:16:30.2932774Z   2850K .......... .......... .......... .......... .......... 23%  134M 1s
2021-01-27T07:16:30.2936195Z   2900K .......... .......... .......... .......... .......... 23%  129M 1s
2021-01-27T07:16:30.2939860Z   2950K .......... .......... .......... .......... .......... 24%  141M 1s
2021-01-27T07:16:30.2943432Z   3000K .......... .......... .......... .......... .......... 24%  134M 1s
2021-01-27T07:16:30.2947298Z   3050K .......... .......... .......... .......... .......... 24%  138M 1s
2021-01-27T07:16:30.2950761Z   3100K .......... .......... .......... .......... .......... 25%  125M 1s
2021-01-27T07:16:30.2954311Z   3150K .......... .......... .......... .......... .......... 25%  140M 1s
2021-01-27T07:16:30.2957749Z   3200K .......... .......... .......... .......... .......... 26%  139M 1s
2021-01-27T07:16:30.2961572Z   3250K .......... .......... .......... .......... .......... 26%  140M 1s
2021-01-27T07:16:30.2965023Z   3300K .......... .......... .......... .......... .......... 27%  129M 1s
2021-01-27T07:16:30.2968596Z   3350K .......... .......... .......... .......... .......... 27%  140M 1s
2021-01-27T07:16:30.2972834Z   3400K .......... .......... .......... .......... .......... 27%  117M 1s
2021-01-27T07:16:30.2976882Z   3450K .......... .......... .......... .......... .......... 28%  132M 1s
2021-01-27T07:16:30.2980440Z   3500K .......... .......... .......... .......... .......... 28%  121M 1s
2021-01-27T07:16:30.2984012Z   3550K .......... .......... .......... .......... .......... 29%  141M 1s
2021-01-27T07:16:30.2987618Z   3600K .......... .......... .......... .......... .......... 29%  132M 1s
2021-01-27T07:16:30.2991408Z   3650K .......... .......... .......... .......... .......... 29%  141M 1s
2021-01-27T07:16:30.2994852Z   3700K .......... .......... .......... .......... .......... 30%  129M 1s
2021-01-27T07:16:30.2998395Z   3750K .......... .......... .......... .......... .......... 30%  140M 1s
2021-01-27T07:16:30.3001893Z   3800K .......... .......... .......... .......... .......... 31%  138M 1s
2021-01-27T07:16:30.3214974Z   3850K .......... .......... .......... .......... .......... 31% 2.32M 1s
2021-01-27T07:16:30.3225313Z   3900K .......... .......... .......... .......... .......... 31% 38.4M 1s
2021-01-27T07:16:30.3232079Z   3950K .......... .......... .......... .......... .......... 32% 71.6M 1s
2021-01-27T07:16:30.3238818Z   4000K .......... .......... .......... .......... .......... 32% 71.9M 1s
2021-01-27T07:16:30.3245326Z   4050K .......... .......... .......... .......... .......... 33% 82.2M 1s
2021-01-27T07:16:30.3251955Z   4100K .......... .......... .......... .......... .......... 33% 66.6M 1s
2021-01-27T07:16:30.3258201Z   4150K .......... .......... .......... .......... .......... 33% 79.5M 1s
2021-01-27T07:16:30.3265354Z   4200K .......... .......... .......... .......... .......... 34% 67.9M 1s
2021-01-27T07:16:30.3272864Z   4250K .......... .......... .......... .......... .......... 34% 78.1M 1s
2021-01-27T07:16:30.3278833Z   4300K .......... .......... .......... .......... .......... 35% 67.7M 1s
2021-01-27T07:16:30.3285898Z   4350K .......... .......... .......... .......... .......... 35% 70.0M 1s
2021-01-27T07:16:30.3290761Z   4400K .......... .......... .......... .......... .......... 35% 98.7M 1s
2021-01-27T07:16:30.3295933Z   4450K .......... .......... .......... .......... .......... 36%  103M 1s
2021-01-27T07:16:30.3302271Z   4500K .......... .......... .......... .......... .......... 36% 72.6M 1s
2021-01-27T07:16:30.3306223Z   4550K .......... .......... .......... .......... .......... 37%  115M 1s
2021-01-27T07:16:30.3311365Z   4600K .......... .......... .......... .......... .......... 37% 97.0M 1s
2021-01-27T07:16:30.3320115Z   4650K .......... .......... .......... .......... .......... 37%  101M 1s
2021-01-27T07:16:30.3321061Z   4700K .......... .......... .......... .......... .......... 38%  245M 1s
2021-01-27T07:16:30.3321687Z   4750K .......... .......... .......... .......... .......... 38%  306M 1s
2021-01-27T07:16:30.3324932Z   4800K .......... .......... .......... .......... .......... 39% 98.6M 1s
2021-01-27T07:16:30.3328665Z   4850K .......... .......... .......... .......... .......... 39%  138M 1s
2021-01-27T07:16:30.3332447Z   4900K .......... .......... .......... .......... .......... 39%  118M 1s
2021-01-27T07:16:30.3335846Z   4950K .......... .......... .......... .......... .......... 40%  137M 0s
2021-01-27T07:16:30.3339343Z   5000K .......... .......... .......... .......... .......... 40%  140M 0s
2021-01-27T07:16:30.3343564Z   5050K .......... .......... .......... .......... .......... 41%  127M 0s
2021-01-27T07:16:30.3346995Z   5100K .......... .......... .......... .......... .......... 41%  127M 0s
2021-01-27T07:16:30.3350606Z   5150K .......... .......... .......... .......... .......... 41%  136M 0s
2021-01-27T07:16:30.3354070Z   5200K .......... .......... .......... .......... .......... 42%  140M 0s
2021-01-27T07:16:30.3357915Z   5250K .......... .......... .......... .......... .......... 42%  137M 0s
2021-01-27T07:16:30.3361374Z   5300K .......... .......... .......... .......... .......... 43%  128M 0s
2021-01-27T07:16:30.3365000Z   5350K .......... .......... .......... .......... .......... 43%  138M 0s
2021-01-27T07:16:30.3368551Z   5400K .......... .......... .......... .......... .......... 43%  135M 0s
2021-01-27T07:16:30.3374915Z   5450K .......... .......... .......... .......... .......... 44%  140M 0s
2021-01-27T07:16:30.3378598Z   5500K .......... .......... .......... .......... .......... 44% 74.8M 0s
2021-01-27T07:16:30.3382369Z   5550K .......... .......... .......... .......... .......... 45%  132M 0s
2021-01-27T07:16:30.3385842Z   5600K .......... .......... .......... .......... .......... 45%  138M 0s
2021-01-27T07:16:30.3389691Z   5650K .......... .......... .......... .......... .......... 45%  141M 0s
2021-01-27T07:16:30.3393127Z   5700K .......... .......... .......... .......... .......... 46%  127M 0s
2021-01-27T07:16:30.3396723Z   5750K .......... .......... .......... .......... .......... 46%  138M 0s
2021-01-27T07:16:30.3400685Z   5800K .......... .......... .......... .......... .......... 47%  125M 0s
2021-01-27T07:16:30.3404588Z   5850K .......... .......... .......... .......... .......... 47%  140M 0s
2021-01-27T07:16:30.3408109Z   5900K .......... .......... .......... .......... .......... 47%  123M 0s
2021-01-27T07:16:30.3411614Z   5950K .......... .......... .......... .......... .......... 48%  140M 0s
2021-01-27T07:16:30.3415964Z   6000K .......... .......... .......... .......... .......... 48%  118M 0s
2021-01-27T07:16:30.3623014Z   6050K .......... .......... .......... .......... .......... 49% 2.37M 0s
2021-01-27T07:16:30.3628373Z   6100K .......... .......... .......... .......... .......... 49% 78.5M 0s
2021-01-27T07:16:30.3632034Z   6150K .......... .......... .......... .......... .......... 49%  133M 0s
2021-01-27T07:16:30.3636983Z   6200K .......... .......... .......... .......... .......... 50% 97.2M 0s
2021-01-27T07:16:30.3645170Z   6250K .......... .......... .......... .......... .......... 50% 65.9M 0s
2021-01-27T07:16:30.3651150Z   6300K .......... .......... .......... .......... .......... 51% 73.8M 0s
2021-01-27T07:16:30.3656178Z   6350K .......... .......... .......... .......... .......... 51% 95.1M 0s
2021-01-27T07:16:30.3660015Z   6400K .......... .......... .......... .......... .......... 51%  131M 0s
2021-01-27T07:16:30.3665380Z   6450K .......... .......... .......... .......... .......... 52% 93.7M 0s
2021-01-27T07:16:30.3668944Z   6500K .......... .......... .......... .......... .......... 52%  125M 0s
2021-01-27T07:16:30.3675844Z   6550K .......... .......... .......... .......... .......... 53% 71.8M 0s
2021-01-27T07:16:30.3683010Z   6600K .......... .......... .......... .......... .......... 53% 68.8M 0s
2021-01-27T07:16:30.3690849Z   6650K .......... .......... .......... .......... .......... 54% 65.2M 0s
2021-01-27T07:16:30.3695524Z   6700K .......... .......... .......... .......... .......... 54% 95.3M 0s
2021-01-27T07:16:30.3699548Z   6750K .......... .......... .......... .......... .......... 54%  122M 0s
2021-01-27T07:16:30.3703772Z   6800K .......... .......... .......... .......... .......... 55%  114M 0s
2021-01-27T07:16:30.3708923Z   6850K .......... .......... .......... .......... .......... 55%  102M 0s
2021-01-27T07:16:30.3712899Z   6900K .......... .......... .......... .......... .......... 56%  112M 0s
2021-01-27T07:16:30.3716427Z   6950K .......... .......... .......... .......... .......... 56%  134M 0s
2021-01-27T07:16:30.3719972Z   7000K .......... .......... .......... .......... .......... 56%  140M 0s
2021-01-27T07:16:30.3723875Z   7050K .......... .......... .......... .......... .......... 57%  139M 0s
2021-01-27T07:16:30.3727326Z   7100K .......... .......... .......... .......... .......... 57%  127M 0s
2021-01-27T07:16:30.3732324Z   7150K .......... .......... .......... .......... .......... 58%  100M 0s
2021-01-27T07:16:30.3737062Z   7200K .......... .......... .......... .......... .......... 58%  104M 0s
2021-01-27T07:16:30.3741106Z   7250K .......... .......... .......... .......... .......... 58%  124M 0s
2021-01-27T07:16:30.3744707Z   7300K .......... .......... .......... .......... .......... 59%  126M 0s
2021-01-27T07:16:30.3748193Z   7350K .......... .......... .......... .......... .......... 59%  137M 0s
2021-01-27T07:16:30.3751809Z   7400K .......... .......... .......... .......... .......... 60%  139M 0s
2021-01-27T07:16:30.3912597Z   7450K .......... .......... .......... .......... .......... 60% 6.93M 0s
2021-01-27T07:16:30.3913395Z   7500K .......... .......... .......... .......... .......... 60%  244M 0s
2021-01-27T07:16:30.3914502Z   7550K .......... .......... .......... .......... .......... 61%  295M 0s
2021-01-27T07:16:30.3915098Z   7600K .......... .......... .......... .......... .......... 61%  302M 0s
2021-01-27T07:16:30.3915585Z   7650K .......... .......... .......... .......... .......... 62%  299M 0s
2021-01-27T07:16:30.3916092Z   7700K .......... .......... .......... .......... .......... 62%  260M 0s
2021-01-27T07:16:30.3916791Z   7750K .......... .......... .......... .......... .......... 62%  301M 0s
2021-01-27T07:16:30.3917286Z   7800K .......... .......... .......... .......... .......... 63%  302M 0s
2021-01-27T07:16:30.3917763Z   7850K .......... .......... .......... .......... .......... 63%  301M 0s
2021-01-27T07:16:30.3918255Z   7900K .......... .......... .......... .......... .......... 64%  254M 0s
2021-01-27T07:16:30.3918734Z   7950K .......... .......... .......... .......... .......... 64%  296M 0s
2021-01-27T07:16:30.3919212Z   8000K .......... .......... .......... .......... .......... 64%  301M 0s
2021-01-27T07:16:30.3919702Z   8050K .......... .......... .......... .......... .......... 65%  108M 0s
2021-01-27T07:16:30.3920179Z   8100K .......... .......... .......... .......... .......... 65%  266M 0s
2021-01-27T07:16:30.3920675Z   8150K .......... .......... .......... .......... .......... 66%  297M 0s
2021-01-27T07:16:30.3921290Z   8200K .......... .......... .......... .......... .......... 66%  297M 0s
2021-01-27T07:16:30.4030150Z   8250K .......... .......... .......... .......... .......... 66% 2.80M 0s
2021-01-27T07:16:30.4034139Z   8300K .......... .......... .......... .......... .......... 67% 67.2M 0s
2021-01-27T07:16:30.4039754Z   8350K .......... .......... .......... .......... .......... 67% 76.4M 0s
2021-01-27T07:16:30.4041357Z   8400K .......... .......... .......... .......... .......... 68%  281M 0s
2021-01-27T07:16:30.4043587Z   8450K .......... .......... .......... .......... .......... 68%  294M 0s
2021-01-27T07:16:30.4045008Z   8500K .......... .......... .......... .......... .......... 68%  268M 0s
2021-01-27T07:16:30.4051187Z   8550K .......... .......... .......... .......... .......... 69% 90.8M 0s
2021-01-27T07:16:30.4053300Z   8600K .......... .......... .......... .......... .......... 69%  293M 0s
2021-01-27T07:16:30.4055080Z   8650K .......... .......... .......... .......... .......... 70%  313M 0s
2021-01-27T07:16:30.4058134Z   8700K .......... .......... .......... .......... .......... 70% 92.3M 0s
2021-01-27T07:16:30.4086726Z   8750K .......... .......... .......... .......... .......... 70%  172M 0s
2021-01-27T07:16:30.4094107Z   8800K .......... .......... .......... .......... .......... 71%  307M 0s
2021-01-27T07:16:30.4100231Z   8850K .......... .......... .......... .......... .......... 71%  312M 0s
2021-01-27T07:16:30.4101046Z   8900K .......... .......... .......... .......... .......... 72%  158M 0s
2021-01-27T07:16:30.4102789Z   8950K .......... .......... .......... .......... .......... 72%  291M 0s
2021-01-27T07:16:30.4103261Z   9000K .......... .......... .......... .......... .......... 72%  309M 0s
2021-01-27T07:16:30.4103686Z   9050K .......... .......... .......... .......... .......... 73%  314M 0s
2021-01-27T07:16:30.4104140Z   9100K .......... .......... .......... .......... .......... 73%  157M 0s
2021-01-27T07:16:30.4104584Z   9150K .......... .......... .......... .......... .......... 74%  311M 0s
2021-01-27T07:16:30.4105052Z   9200K .......... .......... .......... .......... .......... 74%  304M 0s
2021-01-27T07:16:30.4105477Z   9250K .......... .......... .......... .......... .......... 74%  183M 0s
2021-01-27T07:16:30.4105924Z   9300K .......... .......... .......... .......... .......... 75%  275M 0s
2021-01-27T07:16:30.4106705Z   9350K .......... .......... .......... .......... .......... 75%  312M 0s
2021-01-27T07:16:30.4107394Z   9400K .......... .......... .......... .......... .......... 76%  312M 0s
2021-01-27T07:16:30.4108081Z   9450K .......... .......... .......... .......... .......... 76%  143M 0s
2021-01-27T07:16:30.4108966Z   9500K .......... .......... .......... .......... .......... 76%  260M 0s
2021-01-27T07:16:30.4109520Z   9550K .......... .......... .......... .......... .......... 77%  308M 0s
2021-01-27T07:16:30.4110077Z   9600K .......... .......... .......... .......... .......... 77%  153M 0s
2021-01-27T07:16:30.4110625Z   9650K .......... .......... .......... .......... .......... 78%  302M 0s
2021-01-27T07:16:30.4111403Z   9700K .......... .......... .......... .......... .......... 78%  268M 0s
2021-01-27T07:16:30.4113939Z   9750K .......... .......... .......... .......... .......... 79% 33.6M 0s
2021-01-27T07:16:30.4118538Z   9800K .......... .......... .......... .......... .......... 79%  106M 0s
2021-01-27T07:16:30.4122362Z   9850K .......... .......... .......... .......... .......... 79%  142M 0s
2021-01-27T07:16:30.4127330Z   9900K .......... .......... .......... .......... .......... 80%  136M 0s
2021-01-27T07:16:30.4128443Z   9950K .......... .......... .......... .......... .......... 80%  298M 0s
2021-01-27T07:16:30.4138660Z  10000K .......... .......... .......... .......... .......... 81%  156M 0s
2021-01-27T07:16:30.4139614Z  10050K .......... .......... .......... .......... .......... 81%  303M 0s
2021-01-27T07:16:30.4140485Z  10100K .......... .......... .......... .......... .......... 81%  273M 0s
2021-01-27T07:16:30.4141331Z  10150K .......... .......... .......... .......... .......... 82%  305M 0s
2021-01-27T07:16:30.4142149Z  10200K .......... .......... .......... .......... .......... 82%  299M 0s
2021-01-27T07:16:30.4174894Z  10250K .......... .......... .......... .......... .......... 83%  310M 0s
2021-01-27T07:16:30.4177950Z  10300K .......... .......... .......... .......... .......... 83% 12.5M 0s
2021-01-27T07:16:30.4184367Z  10350K .......... .......... .......... .......... .......... 83%  120M 0s
2021-01-27T07:16:30.4185220Z  10400K .......... .......... .......... .......... .......... 84%  278M 0s
2021-01-27T07:16:30.4189950Z  10450K .......... .......... .......... .......... .......... 84% 77.8M 0s
2021-01-27T07:16:30.4196943Z  10500K .......... .......... .......... .......... .......... 85%  170M 0s
2021-01-27T07:16:30.4197907Z  10550K .......... .......... .......... .......... .......... 85%  299M 0s
2021-01-27T07:16:30.4198733Z  10600K .......... .......... .......... .......... .......... 85%  302M 0s
2021-01-27T07:16:30.4227826Z  10650K .......... .......... .......... .......... .......... 86% 15.9M 0s
2021-01-27T07:16:30.4232608Z  10700K .......... .......... .......... .......... .......... 86% 81.8M 0s
2021-01-27T07:16:30.4431179Z  10750K .......... .......... .......... .......... .......... 87% 2.47M 0s
2021-01-27T07:16:30.4437040Z  10800K .......... .......... .......... .......... .......... 87% 87.1M 0s
2021-01-27T07:16:30.4440126Z  10850K .......... .......... .......... .......... .......... 87%  195M 0s
2021-01-27T07:16:30.4442073Z  10900K .......... .......... .......... .......... .......... 88%  182M 0s
2021-01-27T07:16:30.4494390Z  10950K .......... .......... .......... .......... .......... 88%  216M 0s
2021-01-27T07:16:30.4497346Z  11000K .......... .......... .......... .......... .......... 89%  197M 0s
2021-01-27T07:16:30.4499268Z  11050K .......... .......... .......... .......... .......... 89%  203M 0s
2021-01-27T07:16:30.4501356Z  11100K .......... .......... .......... .......... .......... 89%  175M 0s
2021-01-27T07:16:30.4503298Z  11150K .......... .......... .......... .......... .......... 90%  210M 0s
2021-01-27T07:16:30.4505179Z  11200K .......... .......... .......... .......... .......... 90%  199M 0s
2021-01-27T07:16:30.4507059Z  11250K .......... .......... .......... .......... .......... 91%  209M 0s
2021-01-27T07:16:30.4508923Z  11300K .......... .......... .......... .......... .......... 91%  165M 0s
2021-01-27T07:16:30.4510799Z  11350K .......... .......... .......... .......... .......... 91%  203M 0s
2021-01-27T07:16:30.4512676Z  11400K .......... .......... .......... .......... .......... 92%  204M 0s
2021-01-27T07:16:30.4514555Z  11450K .......... .......... .......... .......... .......... 92%  107M 0s
2021-01-27T07:16:30.4516413Z  11500K .......... .......... .......... .......... .......... 93%  169M 0s
2021-01-27T07:16:30.4518284Z  11550K .......... .......... .......... .......... .......... 93%  208M 0s
2021-01-27T07:16:30.4520151Z  11600K .......... .......... .......... .......... .......... 93%  209M 0s
2021-01-27T07:16:30.4522612Z  11650K .......... .......... .......... .......... .......... 94%  208M 0s
2021-01-27T07:16:30.4527967Z  11700K .......... .......... .......... .......... .......... 94%  187M 0s
2021-01-27T07:16:30.4529397Z  11750K .......... .......... .......... .......... .......... 95%  212M 0s
2021-01-27T07:16:30.4530778Z  11800K .......... .......... .......... .......... .......... 95%  207M 0s
2021-01-27T07:16:30.4532129Z  11850K .......... .......... .......... .......... .......... 95%  213M 0s
2021-01-27T07:16:30.4533490Z  11900K .......... .......... .......... .......... .......... 96%  175M 0s
2021-01-27T07:16:30.4534910Z  11950K .......... .......... .......... .......... .......... 96%  210M 0s
2021-01-27T07:16:30.4549594Z  12000K .......... .......... .......... .......... .......... 97%  202M 0s
2021-01-27T07:16:30.4550069Z  12050K .......... .......... .......... .......... .......... 97%  212M 0s
2021-01-27T07:16:30.4550681Z  12100K .......... .......... .......... .......... .......... 97%  178M 0s
2021-01-27T07:16:30.4551118Z  12150K .......... .......... .......... .......... .......... 98%  211M 0s
2021-01-27T07:16:30.4551603Z  12200K .......... .......... .......... .......... .......... 98%  216M 0s
2021-01-27T07:16:30.4552028Z  12250K .......... .......... .......... .......... .......... 99%  212M 0s
2021-01-27T07:16:30.4552467Z  12300K .......... .......... .......... .......... .......... 99%  179M 0s
2021-01-27T07:16:30.4552901Z  12350K .......... .......... .......... .......... .......... 99%  217M 0s
2021-01-27T07:16:30.4553347Z  12400K ....                                                  100% 7629G=0.5s
2021-01-27T07:16:30.4553636Z 
2021-01-27T07:16:30.4554852Z 2021-01-27 07:16:30 (26.8 MB/s) - ‘cm’ saved [12701696/12701696]
2021-01-27T07:16:30.4555184Z 
2021-01-27T07:16:30.4723179Z > Using Docker
2021-01-27T07:16:30.4848274Z - Your Docker API version is 1.40
2021-01-27T07:16:30.4886270Z > Downloading Selenoid...
2021-01-27T07:16:30.4887429Z - Fetching tags for image aerokube/selenoid
2021-01-27T07:16:30.4888359Z registry.ping url=https://registry.hub.docker.com/v2/
2021-01-27T07:16:31.0755709Z registry.tags url=https://registry.hub.docker.com/v2/aerokube/selenoid/tags/list repository=aerokube/selenoid
2021-01-27T07:16:31.4653080Z - Pulling image aerokube/selenoid:1.10.1
2021-01-27T07:16:32.0865663Z 
2021-01-27T07:16:32.0872138Z 
2021-01-27T07:16:32.3364725Z 
2021-01-27T07:16:32.3365550Z 	[531e226c10ac]: Downloading [>                                                  ]  7.267kB/674.3kB
2021-01-27T07:16:32.3391690Z e[1Ae[2K
2021-01-27T07:16:32.3392345Z 	[2dd412dc46de]: Downloading [>                                                  ]  37.23kB/3.586MB
2021-01-27T07:16:32.3482382Z e[1Ae[2K
2021-01-27T07:16:32.3483000Z 	[801bfaa63ef2]: Downloading [>                                                  ]  29.34kB/2.799MB
2021-01-27T07:16:32.3968658Z e[1Ae[2K
2021-01-27T07:16:32.3969363Z 	[531e226c10ac]: Verifying Checksum [>                                                  ]  29.34kB/2.799MB
2021-01-27T07:16:32.3970049Z e[1Ae[2K
2021-01-27T07:16:32.3970573Z 	[531e226c10ac]: Download complete [>                                                  ]  29.34kB/2.799MB
2021-01-27T07:16:32.4349256Z e[1Ae[2K
2021-01-27T07:16:32.4349672Z 
2021-01-27T07:16:32.4349952Z 
2021-01-27T07:16:32.4501609Z 
2021-01-27T07:16:32.4502836Z 	[801bfaa63ef2]: Downloading [==================================>                ]  1.948MB/2.799MB
2021-01-27T07:16:32.4605495Z e[1Ae[2K
2021-01-27T07:16:32.4605874Z 
2021-01-27T07:16:32.4606107Z 
2021-01-27T07:16:32.4609571Z 
2021-01-27T07:16:32.4610159Z 	[801bfaa63ef2]: Extracting [>                                                  ]  32.77kB/2.799MB
2021-01-27T07:16:32.5614017Z e[1Ae[2K
2021-01-27T07:16:32.5614690Z 	[801bfaa63ef2]: Extracting [=============================>                     ]  1.638MB/2.799MB
2021-01-27T07:16:32.5866205Z e[1Ae[2K
2021-01-27T07:16:32.6124628Z 
2021-01-27T07:16:32.6156139Z 
2021-01-27T07:16:32.6156886Z 	[531e226c10ac]: Extracting [==>                                                ]  32.77kB/674.3kB
2021-01-27T07:16:32.7175794Z e[1Ae[2K
2021-01-27T07:16:32.7176400Z 	[531e226c10ac]: Extracting [=========================================>         ]  557.1kB/674.3kB
2021-01-27T07:16:32.7516478Z e[1Ae[2K
2021-01-27T07:16:32.7631403Z 
2021-01-27T07:16:32.8348835Z 
2021-01-27T07:16:32.8370000Z 
2021-01-27T07:16:32.8371585Z 	[2dd412dc46de]: Extracting [>                                                  ]  65.54kB/3.586MB
2021-01-27T07:16:32.9373404Z e[1Ae[2K
2021-01-27T07:16:32.9374076Z 	[2dd412dc46de]: Extracting [===============================>                   ]  2.228MB/3.586MB
2021-01-27T07:16:32.9660286Z e[1Ae[2K
2021-01-27T07:16:32.9668672Z 
2021-01-27T07:16:32.9764565Z 
2021-01-27T07:16:32.9796886Z 
2021-01-27T07:16:32.9813582Z 
2021-01-27T07:16:32.9818189Z 
2021-01-27T07:16:32.9819352Z > Configuring Selenoid...
2021-01-27T07:16:32.9820483Z > Processing browser "firefox"...
2021-01-27T07:16:32.9822067Z - Fetching tags for image selenoid/firefox
2021-01-27T07:16:32.9823522Z registry.tags url=https://registry.hub.docker.com/v2/selenoid/firefox/tags/list repository=selenoid/firefox
2021-01-27T07:16:33.2510018Z - Pulling image selenoid/firefox:84.0
2021-01-27T07:16:33.8446728Z 
2021-01-27T07:16:33.8447482Z 
2021-01-27T07:16:33.8447865Z 
2021-01-27T07:16:33.8448252Z 
2021-01-27T07:16:33.8448631Z 
2021-01-27T07:16:33.8449010Z 
2021-01-27T07:16:33.8449372Z 
2021-01-27T07:16:33.8455669Z 
2021-01-27T07:16:33.8456304Z 
2021-01-27T07:16:33.8456705Z 
2021-01-27T07:16:33.8457071Z 
2021-01-27T07:16:33.8457453Z 
2021-01-27T07:16:33.8457833Z 
2021-01-27T07:16:33.8458211Z 
2021-01-27T07:16:33.8458569Z 
2021-01-27T07:16:33.8459073Z 
2021-01-27T07:16:33.8459776Z 
2021-01-27T07:16:33.8460161Z 
2021-01-27T07:16:33.8460521Z 
2021-01-27T07:16:33.8460895Z 
2021-01-27T07:16:33.8461389Z 
2021-01-27T07:16:33.8461605Z 
2021-01-27T07:16:33.8461830Z 
2021-01-27T07:16:33.8462045Z 
2021-01-27T07:16:33.8462262Z 
2021-01-27T07:16:33.8462462Z 
2021-01-27T07:16:33.8462699Z 
2021-01-27T07:16:33.8462915Z 
2021-01-27T07:16:34.0917725Z 
2021-01-27T07:16:34.0918684Z 	[70799171ddba]: Downloading [=========================>                         ]     424B/848B
2021-01-27T07:16:34.0924042Z e[1Ae[2K
2021-01-27T07:16:34.0924388Z 
2021-01-27T07:16:34.0924684Z 
2021-01-27T07:16:34.1045323Z 
2021-01-27T07:16:34.1046064Z 	[d13af8ca898f]: Downloading [>                                                  ]     422B/35.36kB
2021-01-27T07:16:34.1050234Z e[1Ae[2K
2021-01-27T07:16:34.1054047Z 
2021-01-27T07:16:34.1054323Z 
2021-01-27T07:16:34.1658719Z 
2021-01-27T07:16:34.1660298Z 	[7595c8c21622]: Downloading [>                                                  ]  277.5kB/26.7MB
2021-01-27T07:16:34.2672216Z e[1Ae[2K
2021-01-27T07:16:34.2672864Z 	[7595c8c21622]: Downloading [==================>                                ]  9.984MB/26.7MB
2021-01-27T07:16:34.3550302Z e[1Ae[2K
2021-01-27T07:16:34.3559258Z 
2021-01-27T07:16:34.3559635Z 
2021-01-27T07:16:34.3668300Z 
2021-01-27T07:16:34.3668984Z 	[7595c8c21622]: Downloading [===============================================>   ]  25.23MB/26.7MB
2021-01-27T07:16:34.3754846Z e[1Ae[2K
2021-01-27T07:16:34.3755454Z 	[7595c8c21622]: Verifying Checksum [===============================================>   ]  25.23MB/26.7MB
2021-01-27T07:16:34.3767155Z e[1Ae[2K
2021-01-27T07:16:34.3767834Z 	[7595c8c21622]: Download complete [===============================================>   ]  25.23MB/26.7MB
2021-01-27T07:16:34.4297333Z e[1Ae[2K
2021-01-27T07:16:34.4298024Z 	[7595c8c21622]: Extracting [>                                                  ]  294.9kB/26.7MB
2021-01-27T07:16:34.4414828Z e[1Ae[2K
2021-01-27T07:16:34.4415458Z 	[f379101a4bec]: Downloading [>                                                  ]  539.6kB/214.2MB
2021-01-27T07:16:34.5486848Z e[1Ae[2K
2021-01-27T07:16:34.5487454Z 	[f379101a4bec]: Downloading [==>                                                ]  10.66MB/214.2MB
2021-01-27T07:16:34.5559924Z e[1Ae[2K
2021-01-27T07:16:34.5561531Z 	[7595c8c21622]: Extracting [====>                                              ]  2.654MB/26.7MB
2021-01-27T07:16:34.6389547Z e[1Ae[2K
2021-01-27T07:16:34.6390148Z 	[0737f1313e86]: Downloading [==============>                                    ]     423B/1.419kB
2021-01-27T07:16:34.6403372Z e[1Ae[2K
2021-01-27T07:16:34.6416564Z 
2021-01-27T07:16:34.6419946Z 
2021-01-27T07:16:34.6490055Z 
2021-01-27T07:16:34.6490703Z 	[f379101a4bec]: Downloading [=====>                                             ]  23.99MB/214.2MB
2021-01-27T07:16:34.6548464Z e[1Ae[2K
2021-01-27T07:16:34.6549029Z 	[0a73680ce893]: Downloading [===============>                                   ]     424B/1.409kB
2021-01-27T07:16:34.6554511Z e[1Ae[2K
2021-01-27T07:16:34.6564905Z 
2021-01-27T07:16:34.6568181Z 
2021-01-27T07:16:34.6625053Z 
2021-01-27T07:16:34.6625646Z 	[7595c8c21622]: Extracting [=========>                                         ]  5.308MB/26.7MB
2021-01-27T07:16:34.7502116Z e[1Ae[2K
2021-01-27T07:16:34.7502754Z 	[f379101a4bec]: Downloading [========>                                          ]  34.69MB/214.2MB
2021-01-27T07:16:34.7656469Z e[1Ae[2K
2021-01-27T07:16:34.7657078Z 	[7595c8c21622]: Extracting [==============>                                    ]  7.963MB/26.7MB
2021-01-27T07:16:34.8516474Z e[1Ae[2K
2021-01-27T07:16:34.8517107Z 	[f379101a4bec]: Downloading [===========>                                       ]  47.52MB/214.2MB
2021-01-27T07:16:34.8672157Z e[1Ae[2K
2021-01-27T07:16:34.8672820Z 	[7595c8c21622]: Extracting [==================>                                ]  10.03MB/26.7MB
2021-01-27T07:16:34.9124501Z e[1Ae[2K
2021-01-27T07:16:34.9125141Z 	[5671c717bacd]: Downloading [>                                                  ]  1.792kB/119.3kB
2021-01-27T07:16:34.9282118Z e[1Ae[2K
2021-01-27T07:16:34.9293778Z 
2021-01-27T07:16:34.9298123Z 
2021-01-27T07:16:34.9451580Z 
2021-01-27T07:16:34.9455077Z 
2021-01-27T07:16:34.9567041Z 
2021-01-27T07:16:34.9567715Z 	[f379101a4bec]: Downloading [==============>                                    ]   60.9MB/214.2MB
2021-01-27T07:16:34.9841110Z e[1Ae[2K
2021-01-27T07:16:34.9841688Z 	[7595c8c21622]: Extracting [=======================>                           ]  12.39MB/26.7MB
2021-01-27T07:16:35.0527075Z e[1Ae[2K
2021-01-27T07:16:35.0527704Z 	[f379101a4bec]: Downloading [================>                                  ]   72.7MB/214.2MB
2021-01-27T07:16:35.0929142Z e[1Ae[2K
2021-01-27T07:16:35.0929727Z 	[7595c8c21622]: Extracting [===========================>                       ]  14.45MB/26.7MB
2021-01-27T07:16:35.1589333Z e[1Ae[2K
2021-01-27T07:16:35.1589933Z 	[f379101a4bec]: Downloading [===================>                               ]  84.47MB/214.2MB
2021-01-27T07:16:35.2088884Z e[1Ae[2K
2021-01-27T07:16:35.2089464Z 	[7595c8c21622]: Extracting [===============================>                   ]  16.81MB/26.7MB
2021-01-27T07:16:35.2306601Z e[1Ae[2K
2021-01-27T07:16:35.2307233Z 	[4dfbc92ae15e]: Downloading [>                                                  ]  22.28kB/2.206MB
2021-01-27T07:16:35.2693563Z e[1Ae[2K
2021-01-27T07:16:35.2694160Z 	[f379101a4bec]: Downloading [======================>                            ]  97.86MB/214.2MB
2021-01-27T07:16:35.2699093Z e[1Ae[2K
2021-01-27T07:16:35.2699788Z 	[ba7dfb858f4e]: Downloading [>                                                  ]  22.28kB/2.152MB
2021-01-27T07:16:35.3107271Z e[1Ae[2K
2021-01-27T07:16:35.3107852Z 	[7595c8c21622]: Extracting [==================================>                ]  18.58MB/26.7MB
2021-01-27T07:16:35.3248250Z e[1Ae[2K
2021-01-27T07:16:35.3260915Z 
2021-01-27T07:16:35.3264695Z 
2021-01-27T07:16:35.3519903Z 
2021-01-27T07:16:35.3523432Z 
2021-01-27T07:16:35.3641248Z 
2021-01-27T07:16:35.3641965Z 	[f379101a4bec]: Downloading [=========================>                         ]  111.2MB/214.2MB
2021-01-27T07:16:35.4197214Z e[1Ae[2K
2021-01-27T07:16:35.4197757Z 	[7595c8c21622]: Extracting [========================================>          ]  21.53MB/26.7MB
2021-01-27T07:16:35.4651939Z e[1Ae[2K
2021-01-27T07:16:35.4652542Z 	[f379101a4bec]: Downloading [============================>                      ]  123.6MB/214.2MB
2021-01-27T07:16:35.5305204Z e[1Ae[2K
2021-01-27T07:16:35.5305780Z 	[7595c8c21622]: Extracting [============================================>      ]  23.89MB/26.7MB
2021-01-27T07:16:35.5708563Z e[1Ae[2K
2021-01-27T07:16:35.5709201Z 	[f379101a4bec]: Downloading [==============================>                    ]  131.1MB/214.2MB
2021-01-27T07:16:35.6313593Z e[1Ae[2K
2021-01-27T07:16:35.6314235Z 	[5e81377b5ecd]: Downloading [>                                                  ]   27.8kB/2.691MB
2021-01-27T07:16:35.6431209Z e[1Ae[2K
2021-01-27T07:16:35.6431918Z 	[7595c8c21622]: Extracting [=============================================>     ]  24.48MB/26.7MB
2021-01-27T07:16:35.6670797Z e[1Ae[2K
2021-01-27T07:16:35.6671384Z 	[50ed3983716d]: Downloading [>                                                  ]  539.7kB/97.92MB
2021-01-27T07:16:35.6735082Z e[1Ae[2K
2021-01-27T07:16:35.6735796Z 	[f379101a4bec]: Downloading [================================>                  ]  140.2MB/214.2MB
2021-01-27T07:16:35.7420972Z e[1Ae[2K
2021-01-27T07:16:35.7421580Z 	[5e81377b5ecd]: Downloading [================================>                  ]   1.76MB/2.691MB
2021-01-27T07:16:35.7608984Z e[1Ae[2K
2021-01-27T07:16:35.7609557Z 	[7595c8c21622]: Extracting [===============================================>   ]  25.36MB/26.7MB
2021-01-27T07:16:35.7837928Z e[1Ae[2K
2021-01-27T07:16:35.7838583Z 	[50ed3983716d]: Downloading [=====>                                             ]  10.22MB/97.92MB
2021-01-27T07:16:35.7878768Z e[1Ae[2K
2021-01-27T07:16:35.7879369Z 	[f379101a4bec]: Downloading [==================================>                ]  147.2MB/214.2MB
2021-01-27T07:16:35.8012857Z e[1Ae[2K
2021-01-27T07:16:35.8013522Z 	[5e81377b5ecd]: Verifying Checksum [==================================>                ]  147.2MB/214.2MB
2021-01-27T07:16:35.8014222Z e[1Ae[2K
2021-01-27T07:16:35.8014755Z 	[5e81377b5ecd]: Download complete [==================================>                ]  147.2MB/214.2MB
2021-01-27T07:16:35.8806883Z e[1Ae[2K
2021-01-27T07:16:35.8807515Z 	[50ed3983716d]: Downloading [==========>                                        ]   19.9MB/97.92MB
2021-01-27T07:16:35.8886731Z e[1Ae[2K
2021-01-27T07:16:35.8887822Z 	[f379101a4bec]: Downloading [====================================>              ]  156.3MB/214.2MB
2021-01-27T07:16:35.9229655Z e[1Ae[2K
2021-01-27T07:16:35.9230828Z 	[7595c8c21622]: Extracting [=================================================> ]  26.54MB/26.7MB
2021-01-27T07:16:35.9911510Z e[1Ae[2K
2021-01-27T07:16:35.9912124Z 	[50ed3983716d]: Downloading [===============>                                   ]  31.22MB/97.92MB
2021-01-27T07:16:35.9919321Z e[1Ae[2K
2021-01-27T07:16:36.0057206Z 
2021-01-27T07:16:36.0057893Z 	[f379101a4bec]: Downloading [======================================>            ]  164.3MB/214.2MB
2021-01-27T07:16:36.0926989Z e[1Ae[2K
2021-01-27T07:16:36.0927614Z 	[50ed3983716d]: Downloading [=====================>                             ]  43.08MB/97.92MB
2021-01-27T07:16:36.1150360Z e[1Ae[2K
2021-01-27T07:16:36.1151008Z 	[f379101a4bec]: Downloading [========================================>          ]  175.6MB/214.2MB
2021-01-27T07:16:36.1229119Z e[1Ae[2K
2021-01-27T07:16:36.1229743Z 	[9412d5077516]: Downloading [>                                                  ]   40.2kB/4.019MB
2021-01-27T07:16:36.1556213Z e[1Ae[2K
2021-01-27T07:16:36.1556850Z 	[7595c8c21622]: Pull complete [>                                                  ]   40.2kB/4.019MB
2021-01-27T07:16:36.1748883Z e[1Ae[2K
2021-01-27T07:16:36.1752733Z 	[d13af8ca898f]: Extracting [==============================================>    ]  32.77kB/35.36kB
2021-01-27T07:16:36.1753591Z e[1Ae[2K
2021-01-27T07:16:36.2025876Z 
2021-01-27T07:16:36.2026677Z 	[50ed3983716d]: Downloading [==========================>                        ]  51.15MB/97.92MB
2021-01-27T07:16:36.2226981Z e[1Ae[2K
2021-01-27T07:16:36.2228209Z 	[f379101a4bec]: Downloading [==========================================>        ]  184.2MB/214.2MB
2021-01-27T07:16:36.2432680Z e[1Ae[2K
2021-01-27T07:16:36.2433975Z 	[9412d5077516]: Downloading [=======>                                           ]  593.2kB/4.019MB
2021-01-27T07:16:36.2693610Z e[1Ae[2K
2021-01-27T07:16:36.2694918Z 	[9412d5077516]: Verifying Checksum [=======>                                           ]  593.2kB/4.019MB
2021-01-27T07:16:36.2695622Z e[1Ae[2K
2021-01-27T07:16:36.2696621Z 	[9412d5077516]: Download complete [=======>                                           ]  593.2kB/4.019MB
2021-01-27T07:16:36.2931683Z e[1Ae[2K
2021-01-27T07:16:36.2932309Z 	[50ed3983716d]: Downloading [=============================>                     ]  58.18MB/97.92MB
2021-01-27T07:16:36.3069534Z e[1Ae[2K
2021-01-27T07:16:36.3070151Z 	[d13af8ca898f]: Pull complete [=============================>                     ]  58.18MB/97.92MB
2021-01-27T07:16:36.3221993Z e[1Ae[2K
2021-01-27T07:16:36.3222624Z 	[f379101a4bec]: Downloading [=============================================>     ]  196.5MB/214.2MB
2021-01-27T07:16:36.3264740Z e[1Ae[2K
2021-01-27T07:16:36.3265049Z 
2021-01-27T07:16:36.4010914Z 
2021-01-27T07:16:36.4011720Z 	[50ed3983716d]: Downloading [=================================>                 ]   65.7MB/97.92MB
2021-01-27T07:16:36.4152797Z e[1Ae[2K
2021-01-27T07:16:36.4153395Z 	[f379101a4bec]: Downloading [================================================>  ]  207.8MB/214.2MB
2021-01-27T07:16:36.4556493Z e[1Ae[2K
2021-01-27T07:16:36.4557135Z 	[70799171ddba]: Pull complete [================================================>  ]  207.8MB/214.2MB
2021-01-27T07:16:36.4676538Z e[1Ae[2K
2021-01-27T07:16:36.4677194Z 	[f379101a4bec]: Verifying Checksum [================================================>  ]  207.8MB/214.2MB
2021-01-27T07:16:36.4680330Z e[1Ae[2K
2021-01-27T07:16:36.4680907Z 	[f379101a4bec]: Download complete [================================================>  ]  207.8MB/214.2MB
2021-01-27T07:16:36.4738505Z e[1Ae[2K
2021-01-27T07:16:36.4738824Z 
2021-01-27T07:16:36.5044310Z 
2021-01-27T07:16:36.5045106Z 	[50ed3983716d]: Downloading [=======================================>           ]  76.99MB/97.92MB
2021-01-27T07:16:36.5495964Z e[1Ae[2K
2021-01-27T07:16:36.5496608Z 	[b6c12202c5ef]: Pull complete [=======================================>           ]  76.99MB/97.92MB
2021-01-27T07:16:36.5659568Z e[1Ae[2K
2021-01-27T07:16:36.5663985Z 
2021-01-27T07:16:36.5667256Z 
2021-01-27T07:16:36.6051405Z 
2021-01-27T07:16:36.6052202Z 	[50ed3983716d]: Downloading [=============================================>     ]  88.86MB/97.92MB
2021-01-27T07:16:36.6950476Z e[1Ae[2K
2021-01-27T07:16:36.6951108Z 	[f379101a4bec]: Extracting [>                                                  ]  557.1kB/214.2MB
2021-01-27T07:16:36.7026200Z e[1Ae[2K
2021-01-27T07:16:36.7026985Z 	[50ed3983716d]: Verifying Checksum [>                                                  ]  557.1kB/214.2MB
2021-01-27T07:16:36.7040186Z e[1Ae[2K
2021-01-27T07:16:36.7040852Z 	[50ed3983716d]: Download complete [>                                                  ]  557.1kB/214.2MB
2021-01-27T07:16:36.7369797Z e[1Ae[2K
2021-01-27T07:16:36.7370498Z 	[ecd2e899091b]: Downloading [==============>                                    ]     423B/1.459kB
2021-01-27T07:16:36.7375698Z e[1Ae[2K
2021-01-27T07:16:36.7378990Z 
2021-01-27T07:16:36.7381885Z 
2021-01-27T07:16:36.8047302Z 
2021-01-27T07:16:36.8049061Z 	[f379101a4bec]: Extracting [>                                                  ]  3.899MB/214.2MB
2021-01-27T07:16:36.9079356Z e[1Ae[2K
2021-01-27T07:16:36.9080054Z 	[f379101a4bec]: Extracting [=>                                                 ]  8.356MB/214.2MB
2021-01-27T07:16:37.0174475Z e[1Ae[2K
2021-01-27T07:16:37.0175177Z 	[f379101a4bec]: Extracting [==>                                                ]  12.81MB/214.2MB
2021-01-27T07:16:37.1228502Z e[1Ae[2K
2021-01-27T07:16:37.1229189Z 	[f379101a4bec]: Extracting [===>                                               ]  16.15MB/214.2MB
2021-01-27T07:16:37.2231131Z e[1Ae[2K
2021-01-27T07:16:37.2231700Z 	[f379101a4bec]: Extracting [====>                                              ]  18.94MB/214.2MB
2021-01-27T07:16:37.3348456Z e[1Ae[2K
2021-01-27T07:16:37.3349042Z 	[f379101a4bec]: Extracting [=====>                                             ]  23.95MB/214.2MB
2021-01-27T07:16:37.4416793Z e[1Ae[2K
2021-01-27T07:16:37.4417377Z 	[f379101a4bec]: Extracting [======>                                            ]  27.85MB/214.2MB
2021-01-27T07:16:37.5425604Z e[1Ae[2K
2021-01-27T07:16:37.5426288Z 	[f379101a4bec]: Extracting [=======>                                           ]  31.75MB/214.2MB
2021-01-27T07:16:37.6564098Z e[1Ae[2K
2021-01-27T07:16:37.6564736Z 	[f379101a4bec]: Extracting [========>                                          ]  35.65MB/214.2MB
2021-01-27T07:16:37.7599985Z e[1Ae[2K
2021-01-27T07:16:37.7600866Z 	[f379101a4bec]: Extracting [=========>                                         ]  38.99MB/214.2MB
2021-01-27T07:16:37.8748371Z e[1Ae[2K
2021-01-27T07:16:37.8749030Z 	[f379101a4bec]: Extracting [==========>                                        ]  42.89MB/214.2MB
2021-01-27T07:16:37.9774585Z e[1Ae[2K
2021-01-27T07:16:37.9775169Z 	[f379101a4bec]: Extracting [==========>                                        ]  46.24MB/214.2MB
2021-01-27T07:16:38.0927037Z e[1Ae[2K
2021-01-27T07:16:38.0927632Z 	[f379101a4bec]: Extracting [===========>                                       ]  50.14MB/214.2MB
2021-01-27T07:16:38.2039340Z e[1Ae[2K
2021-01-27T07:16:38.2039944Z 	[f379101a4bec]: Extracting [============>                                      ]  53.48MB/214.2MB
2021-01-27T07:16:38.3236128Z e[1Ae[2K
2021-01-27T07:16:38.3236734Z 	[f379101a4bec]: Extracting [=============>                                     ]  55.71MB/214.2MB
2021-01-27T07:16:38.4459810Z e[1Ae[2K
2021-01-27T07:16:38.4460517Z 	[f379101a4bec]: Extracting [=============>                                     ]  57.93MB/214.2MB
2021-01-27T07:16:38.5715589Z e[1Ae[2K
2021-01-27T07:16:38.5716221Z 	[f379101a4bec]: Extracting [==============>                                    ]  60.72MB/214.2MB
2021-01-27T07:16:38.6776796Z e[1Ae[2K
2021-01-27T07:16:38.6777397Z 	[f379101a4bec]: Extracting [==============>                                    ]   63.5MB/214.2MB
2021-01-27T07:16:38.7929253Z e[1Ae[2K
2021-01-27T07:16:38.7929846Z 	[f379101a4bec]: Extracting [===============>                                   ]  66.85MB/214.2MB
2021-01-27T07:16:38.8975668Z e[1Ae[2K
2021-01-27T07:16:38.8976271Z 	[f379101a4bec]: Extracting [================>                                  ]  70.75MB/214.2MB
2021-01-27T07:16:39.0004092Z e[1Ae[2K
2021-01-27T07:16:39.0004706Z 	[f379101a4bec]: Extracting [=================>                                 ]  74.65MB/214.2MB
2021-01-27T07:16:39.1023047Z e[1Ae[2K
2021-01-27T07:16:39.1023659Z 	[f379101a4bec]: Extracting [==================>                                ]  77.99MB/214.2MB
2021-01-27T07:16:39.2086976Z e[1Ae[2K
2021-01-27T07:16:39.2087580Z 	[f379101a4bec]: Extracting [===================>                               ]  83.56MB/214.2MB
2021-01-27T07:16:39.3185444Z e[1Ae[2K
2021-01-27T07:16:39.3186076Z 	[f379101a4bec]: Extracting [====================>                              ]  89.13MB/214.2MB
2021-01-27T07:16:39.4311718Z e[1Ae[2K
2021-01-27T07:16:39.4312410Z 	[f379101a4bec]: Extracting [=====================>                             ]  94.14MB/214.2MB
2021-01-27T07:16:39.5476650Z e[1Ae[2K
2021-01-27T07:16:39.5477297Z 	[f379101a4bec]: Extracting [======================>                            ]  96.93MB/214.2MB
2021-01-27T07:16:39.6582710Z e[1Ae[2K
2021-01-27T07:16:39.6583365Z 	[f379101a4bec]: Extracting [=======================>                           ]  99.71MB/214.2MB
2021-01-27T07:16:39.7745104Z e[1Ae[2K
2021-01-27T07:16:39.7745771Z 	[f379101a4bec]: Extracting [========================>                          ]  104.7MB/214.2MB
2021-01-27T07:16:39.8800845Z e[1Ae[2K
2021-01-27T07:16:39.8801564Z 	[f379101a4bec]: Extracting [=========================>                         ]  109.2MB/214.2MB
2021-01-27T07:16:39.9831356Z e[1Ae[2K
2021-01-27T07:16:39.9832061Z 	[f379101a4bec]: Extracting [==========================>                        ]  114.2MB/214.2MB
2021-01-27T07:16:40.0908475Z e[1Ae[2K
2021-01-27T07:16:40.0909117Z 	[f379101a4bec]: Extracting [===========================>                       ]  119.2MB/214.2MB
2021-01-27T07:16:40.2008465Z e[1Ae[2K
2021-01-27T07:16:40.2009116Z 	[f379101a4bec]: Extracting [============================>                      ]  123.7MB/214.2MB
2021-01-27T07:16:40.3046278Z e[1Ae[2K
2021-01-27T07:16:40.3046931Z 	[f379101a4bec]: Extracting [==============================>                    ]  128.7MB/214.2MB
2021-01-27T07:16:40.4145075Z e[1Ae[2K
2021-01-27T07:16:40.4145705Z 	[f379101a4bec]: Extracting [===============================>                   ]  133.1MB/214.2MB
2021-01-27T07:16:40.5286816Z e[1Ae[2K
2021-01-27T07:16:40.5287425Z 	[f379101a4bec]: Extracting [===============================>                   ]  135.9MB/214.2MB
2021-01-27T07:16:40.6899674Z e[1Ae[2K
2021-01-27T07:16:40.6900281Z 	[f379101a4bec]: Extracting [===============================>                   ]    137MB/214.2MB
2021-01-27T07:16:40.8622598Z e[1Ae[2K
2021-01-27T07:16:40.8623263Z 	[f379101a4bec]: Extracting [================================>                  ]  137.6MB/214.2MB
2021-01-27T07:16:40.9757576Z e[1Ae[2K
2021-01-27T07:16:40.9758219Z 	[f379101a4bec]: Extracting [=================================>                 ]    142MB/214.2MB
2021-01-27T07:16:41.0768652Z e[1Ae[2K
2021-01-27T07:16:41.0769303Z 	[f379101a4bec]: Extracting [==================================>                ]  147.1MB/214.2MB
2021-01-27T07:16:41.1773690Z e[1Ae[2K
2021-01-27T07:16:41.1774302Z 	[f379101a4bec]: Extracting [===================================>               ]  153.2MB/214.2MB
2021-01-27T07:16:41.2827529Z e[1Ae[2K
2021-01-27T07:16:41.2828088Z 	[f379101a4bec]: Extracting [=====================================>             ]  160.4MB/214.2MB
2021-01-27T07:16:41.3916772Z e[1Ae[2K
2021-01-27T07:16:41.3917360Z 	[f379101a4bec]: Extracting [=======================================>           ]  167.7MB/214.2MB
2021-01-27T07:16:41.4950054Z e[1Ae[2K
2021-01-27T07:16:41.4950651Z 	[f379101a4bec]: Extracting [========================================>          ]  173.2MB/214.2MB
2021-01-27T07:16:41.5966192Z e[1Ae[2K
2021-01-27T07:16:41.5966780Z 	[f379101a4bec]: Extracting [==========================================>        ]  181.6MB/214.2MB
2021-01-27T07:16:41.7036053Z e[1Ae[2K
2021-01-27T07:16:41.7036691Z 	[f379101a4bec]: Extracting [===========================================>       ]  187.2MB/214.2MB
2021-01-27T07:16:41.8098251Z e[1Ae[2K
2021-01-27T07:16:41.8098952Z 	[f379101a4bec]: Extracting [============================================>      ]  192.7MB/214.2MB
2021-01-27T07:16:41.9104628Z e[1Ae[2K
2021-01-27T07:16:41.9105313Z 	[f379101a4bec]: Extracting [==============================================>    ]  197.2MB/214.2MB
2021-01-27T07:16:42.0401831Z e[1Ae[2K
2021-01-27T07:16:42.0402490Z 	[f379101a4bec]: Extracting [==============================================>    ]  199.4MB/214.2MB
2021-01-27T07:16:43.2665861Z e[1Ae[2K
2021-01-27T07:16:43.2666520Z 	[f379101a4bec]: Extracting [===============================================>   ]  202.8MB/214.2MB
2021-01-27T07:16:43.4084718Z e[1Ae[2K
2021-01-27T07:16:43.4085367Z 	[f379101a4bec]: Extracting [===============================================>   ]  203.3MB/214.2MB
2021-01-27T07:16:43.5835470Z e[1Ae[2K
2021-01-27T07:16:43.5836071Z 	[f379101a4bec]: Extracting [===============================================>   ]  204.4MB/214.2MB
2021-01-27T07:16:43.7387565Z e[1Ae[2K
2021-01-27T07:16:43.7388153Z 	[f379101a4bec]: Extracting [===============================================>   ]    205MB/214.2MB
2021-01-27T07:16:43.9210986Z e[1Ae[2K
2021-01-27T07:16:43.9211705Z 	[f379101a4bec]: Extracting [===============================================>   ]  205.6MB/214.2MB
2021-01-27T07:16:44.9035204Z e[1Ae[2K
2021-01-27T07:16:44.9036207Z 	[f379101a4bec]: Extracting [================================================>  ]  206.1MB/214.2MB
2021-01-27T07:16:45.0483387Z e[1Ae[2K
2021-01-27T07:16:45.0484266Z 	[f379101a4bec]: Extracting [================================================>  ]  207.2MB/214.2MB
2021-01-27T07:16:45.1813744Z e[1Ae[2K
2021-01-27T07:16:45.1814395Z 	[f379101a4bec]: Extracting [================================================>  ]  208.3MB/214.2MB
2021-01-27T07:16:45.2960621Z e[1Ae[2K
2021-01-27T07:16:45.2961251Z 	[f379101a4bec]: Extracting [=================================================> ]  211.7MB/214.2MB
2021-01-27T07:16:45.4799103Z e[1Ae[2K
2021-01-27T07:16:45.4804180Z 	[f379101a4bec]: Extracting [=================================================> ]  212.8MB/214.2MB
2021-01-27T07:16:45.6663011Z e[1Ae[2K
2021-01-27T07:16:45.6664002Z 	[f379101a4bec]: Extracting [=================================================> ]  213.9MB/214.2MB
2021-01-27T07:16:45.6975139Z e[1Ae[2K
2021-01-27T07:16:47.4126542Z 
2021-01-27T07:16:47.4483921Z 
2021-01-27T07:16:47.4488643Z 
2021-01-27T07:16:47.5085016Z 
2021-01-27T07:16:47.5109309Z 
2021-01-27T07:16:47.5114111Z 
2021-01-27T07:16:47.5712343Z 
2021-01-27T07:16:47.5733285Z 
2021-01-27T07:16:47.5733976Z 	[5671c717bacd]: Extracting [=============>                                     ]  32.77kB/119.3kB
2021-01-27T07:16:47.5746573Z e[1Ae[2K
2021-01-27T07:16:47.5754369Z 
2021-01-27T07:16:47.6328207Z 
2021-01-27T07:16:47.6346542Z 
2021-01-27T07:16:47.6350390Z 
2021-01-27T07:16:47.7065448Z 
2021-01-27T07:16:47.7080245Z 
2021-01-27T07:16:47.7080948Z 	[4dfbc92ae15e]: Extracting [>                                                  ]  32.77kB/2.206MB
2021-01-27T07:16:47.7861745Z e[1Ae[2K
2021-01-27T07:16:47.7956871Z 
2021-01-27T07:16:47.7972386Z 
2021-01-27T07:16:47.7973467Z 	[ba7dfb858f4e]: Extracting [>                                                  ]  32.77kB/2.152MB
2021-01-27T07:16:47.8691564Z e[1Ae[2K
2021-01-27T07:16:47.8773750Z 
2021-01-27T07:16:47.9395607Z 
2021-01-27T07:16:48.0491576Z 	[50ed3983716d]: Extracting [>                                                  ]  557.1kB/97.92MB
2021-01-27T07:16:48.0492731Z e[1Ae[2K
2021-01-27T07:16:48.0493230Z 	[50ed3983716d]: Extracting [===>                                               ]  6.128MB/97.92MB
2021-01-27T07:16:48.1663696Z e[1Ae[2K
2021-01-27T07:16:48.1664278Z 	[50ed3983716d]: Extracting [=====>                                             ]  10.03MB/97.92MB
2021-01-27T07:16:48.2679977Z e[1Ae[2K
2021-01-27T07:16:48.2680559Z 	[50ed3983716d]: Extracting [======>                                            ]  12.81MB/97.92MB
2021-01-27T07:16:48.3701486Z e[1Ae[2K
2021-01-27T07:16:48.3702066Z 	[50ed3983716d]: Extracting [========>                                          ]  16.71MB/97.92MB
2021-01-27T07:16:48.4761796Z e[1Ae[2K
2021-01-27T07:16:48.4762486Z 	[50ed3983716d]: Extracting [==========>                                        ]  20.05MB/97.92MB
2021-01-27T07:16:48.5937986Z e[1Ae[2K
2021-01-27T07:16:48.5938704Z 	[50ed3983716d]: Extracting [============>                                      ]  24.51MB/97.92MB
2021-01-27T07:16:48.7035897Z e[1Ae[2K
2021-01-27T07:16:48.7036506Z 	[50ed3983716d]: Extracting [==============>                                    ]  28.41MB/97.92MB
2021-01-27T07:16:48.8037960Z e[1Ae[2K
2021-01-27T07:16:48.8038538Z 	[50ed3983716d]: Extracting [===============>                                   ]   31.2MB/97.92MB
2021-01-27T07:16:48.9069175Z e[1Ae[2K
2021-01-27T07:16:48.9069751Z 	[50ed3983716d]: Extracting [==================>                                ]  36.21MB/97.92MB
2021-01-27T07:16:49.0117497Z e[1Ae[2K
2021-01-27T07:16:49.0118162Z 	[50ed3983716d]: Extracting [=====================>                             ]  41.78MB/97.92MB
2021-01-27T07:16:49.1154376Z e[1Ae[2K
2021-01-27T07:16:49.1155078Z 	[50ed3983716d]: Extracting [========================>                          ]  47.35MB/97.92MB
2021-01-27T07:16:49.2170018Z e[1Ae[2K
2021-01-27T07:16:49.2170633Z 	[50ed3983716d]: Extracting [==========================>                        ]  52.36MB/97.92MB
2021-01-27T07:16:49.3287414Z e[1Ae[2K
2021-01-27T07:16:49.3288061Z 	[50ed3983716d]: Extracting [=============================>                     ]  57.38MB/97.92MB
2021-01-27T07:16:49.4424759Z e[1Ae[2K
2021-01-27T07:16:49.4425421Z 	[50ed3983716d]: Extracting [===============================>                   ]  61.83MB/97.92MB
2021-01-27T07:16:49.5436794Z e[1Ae[2K
2021-01-27T07:16:49.5437419Z 	[50ed3983716d]: Extracting [=================================>                 ]  65.73MB/97.92MB
2021-01-27T07:16:49.6502695Z e[1Ae[2K
2021-01-27T07:16:49.6505085Z 	[50ed3983716d]: Extracting [===================================>               ]  70.19MB/97.92MB
2021-01-27T07:16:49.7635520Z e[1Ae[2K
2021-01-27T07:16:49.7636129Z 	[50ed3983716d]: Extracting [======================================>            ]   75.2MB/97.92MB
2021-01-27T07:16:49.8658088Z e[1Ae[2K
2021-01-27T07:16:49.8658646Z 	[50ed3983716d]: Extracting [========================================>          ]  78.54MB/97.92MB
2021-01-27T07:16:49.9751830Z e[1Ae[2K
2021-01-27T07:16:49.9752433Z 	[50ed3983716d]: Extracting [==========================================>        ]  82.44MB/97.92MB
2021-01-27T07:16:50.0777521Z e[1Ae[2K
2021-01-27T07:16:50.0778149Z 	[50ed3983716d]: Extracting [============================================>      ]  87.46MB/97.92MB
2021-01-27T07:16:50.1872348Z e[1Ae[2K
2021-01-27T07:16:50.1872943Z 	[50ed3983716d]: Extracting [===============================================>   ]  92.47MB/97.92MB
2021-01-27T07:16:50.3093166Z e[1Ae[2K
2021-01-27T07:16:50.3093774Z 	[50ed3983716d]: Extracting [=================================================> ]  96.37MB/97.92MB
2021-01-27T07:16:50.4138836Z e[1Ae[2K
2021-01-27T07:16:51.1110283Z 
2021-01-27T07:16:51.1128270Z 
2021-01-27T07:16:51.1136644Z 	[5e81377b5ecd]: Extracting [>                                                  ]  32.77kB/2.691MB
2021-01-27T07:16:51.2140820Z e[1Ae[2K
2021-01-27T07:16:51.2141424Z 	[5e81377b5ecd]: Extracting [====================================>              ]  1.966MB/2.691MB
2021-01-27T07:16:51.2374165Z e[1Ae[2K
2021-01-27T07:16:51.2491117Z 
2021-01-27T07:16:51.2515262Z 
2021-01-27T07:16:51.2515889Z 	[9412d5077516]: Extracting [>                                                  ]  65.54kB/4.019MB
2021-01-27T07:16:51.3522362Z e[1Ae[2K
2021-01-27T07:16:51.3522939Z 	[9412d5077516]: Extracting [=============================>                     ]  2.359MB/4.019MB
2021-01-27T07:16:51.4017491Z e[1Ae[2K
2021-01-27T07:16:52.7084131Z 
2021-01-27T07:16:52.7142820Z 
2021-01-27T07:16:52.7144847Z 
2021-01-27T07:16:52.7694181Z 
2021-01-27T07:16:52.7717930Z 
2021-01-27T07:16:52.7726082Z 
2021-01-27T07:16:52.8312001Z 
2021-01-27T07:16:52.8348461Z 
2021-01-27T07:16:52.8372799Z 
2021-01-27T07:16:52.8381041Z 
2021-01-27T07:16:52.8383109Z - Pulling image selenoid/firefox:83.0
2021-01-27T07:16:53.4362955Z 
2021-01-27T07:16:53.4402252Z 
2021-01-27T07:16:53.4435249Z 
2021-01-27T07:16:53.4455032Z 
2021-01-27T07:16:53.4480964Z 
2021-01-27T07:16:53.4501376Z 
2021-01-27T07:16:53.4520339Z 
2021-01-27T07:16:53.4549792Z 
2021-01-27T07:16:53.4567806Z 
2021-01-27T07:16:53.4594292Z 
2021-01-27T07:16:53.4620375Z 
2021-01-27T07:16:53.4620689Z 
2021-01-27T07:16:53.4620928Z 
2021-01-27T07:16:53.4621152Z 
2021-01-27T07:16:53.4621369Z 
2021-01-27T07:16:53.4621570Z 
2021-01-27T07:16:53.4621786Z 
2021-01-27T07:16:53.7199934Z 
2021-01-27T07:16:53.7200777Z 	[d5a478dca8b1]: Downloading [>                                                  ]  40.98kB/4.019MB
2021-01-27T07:16:53.7230511Z e[1Ae[2K
2021-01-27T07:16:53.7231165Z 	[648faa4fd47b]: Downloading [>                                                  ]   27.8kB/2.691MB
2021-01-27T07:16:53.8026187Z e[1Ae[2K
2021-01-27T07:16:53.8026800Z 	[bfb6590761d9]: Downloading [>                                                  ]  527.6kB/97.49MB
2021-01-27T07:16:53.8146517Z e[1Ae[2K
2021-01-27T07:16:53.8147192Z 	[648faa4fd47b]: Verifying Checksum [>                                                  ]  527.6kB/97.49MB
2021-01-27T07:16:53.8154207Z e[1Ae[2K
2021-01-27T07:16:53.8154793Z 	[648faa4fd47b]: Download complete [>                                                  ]  527.6kB/97.49MB
2021-01-27T07:16:53.8207223Z e[1Ae[2K
2021-01-27T07:16:53.8207806Z 	[d5a478dca8b1]: Downloading [=====================>                             ]  1.698MB/4.019MB
2021-01-27T07:16:53.8423590Z e[1Ae[2K
2021-01-27T07:16:53.8425101Z 	[d5a478dca8b1]: Verifying Checksum [=====================>                             ]  1.698MB/4.019MB
2021-01-27T07:16:53.8425887Z e[1Ae[2K
2021-01-27T07:16:53.8426430Z 	[d5a478dca8b1]: Download complete [=====================>                             ]  1.698MB/4.019MB
2021-01-27T07:16:53.9102913Z e[1Ae[2K
2021-01-27T07:16:53.9103626Z 	[bfb6590761d9]: Downloading [===>                                               ]  6.958MB/97.49MB
2021-01-27T07:16:54.0063894Z e[1Ae[2K
2021-01-27T07:16:54.0065262Z 	[bfb6590761d9]: Downloading [========>                                          ]  17.14MB/97.49MB
2021-01-27T07:16:54.0648239Z e[1Ae[2K
2021-01-27T07:16:54.0648593Z 
2021-01-27T07:16:54.0648830Z 
2021-01-27T07:16:54.1039395Z 
2021-01-27T07:16:54.1041169Z 	[d56ba0b8a3ad]: Downloading [==========================>                        ]     424B/802B
2021-01-27T07:16:54.1045088Z e[1Ae[2K
2021-01-27T07:16:54.1049017Z 
2021-01-27T07:16:54.1050917Z 
2021-01-27T07:16:54.1083453Z 
2021-01-27T07:16:54.1084215Z 	[bfb6590761d9]: Downloading [================>                                  ]  31.57MB/97.49MB
2021-01-27T07:16:54.2116519Z e[1Ae[2K
2021-01-27T07:16:54.2117145Z 	[bfb6590761d9]: Downloading [======================>                            ]  43.94MB/97.49MB
2021-01-27T07:16:54.3116273Z e[1Ae[2K
2021-01-27T07:16:54.3117325Z 	[bfb6590761d9]: Downloading [=============================>                     ]  57.33MB/97.49MB
2021-01-27T07:16:54.4127422Z e[1Ae[2K
2021-01-27T07:16:54.4128417Z 	[bfb6590761d9]: Downloading [================================>                  ]  64.29MB/97.49MB
2021-01-27T07:16:54.5161423Z e[1Ae[2K
2021-01-27T07:16:54.5162055Z 	[bfb6590761d9]: Downloading [========================================>          ]  79.25MB/97.49MB
2021-01-27T07:16:54.6193146Z e[1Ae[2K
2021-01-27T07:16:54.6193839Z 	[bfb6590761d9]: Downloading [==============================================>    ]  91.01MB/97.49MB
2021-01-27T07:16:54.6597181Z e[1Ae[2K
2021-01-27T07:16:54.6597864Z 	[bfb6590761d9]: Verifying Checksum [==============================================>    ]  91.01MB/97.49MB
2021-01-27T07:16:54.6598542Z e[1Ae[2K
2021-01-27T07:16:54.6599057Z 	[bfb6590761d9]: Download complete [==============================================>    ]  91.01MB/97.49MB
2021-01-27T07:16:54.7233796Z e[1Ae[2K
2021-01-27T07:16:54.7234453Z 	[bfb6590761d9]: Extracting [>                                                  ]  557.1kB/97.49MB
2021-01-27T07:16:54.8247150Z e[1Ae[2K
2021-01-27T07:16:54.8248335Z 	[bfb6590761d9]: Extracting [==>                                                ]  5.571MB/97.49MB
2021-01-27T07:16:54.9327791Z e[1Ae[2K
2021-01-27T07:16:54.9329936Z 	[bfb6590761d9]: Extracting [=====>                                             ]  10.03MB/97.49MB
2021-01-27T07:16:55.0356682Z e[1Ae[2K
2021-01-27T07:16:55.0357275Z 	[bfb6590761d9]: Extracting [======>                                            ]  12.81MB/97.49MB
2021-01-27T07:16:55.1377935Z e[1Ae[2K
2021-01-27T07:16:55.1378781Z 	[bfb6590761d9]: Extracting [========>                                          ]  17.27MB/97.49MB
2021-01-27T07:16:55.2530993Z e[1Ae[2K
2021-01-27T07:16:55.2531590Z 	[bfb6590761d9]: Extracting [==========>                                        ]  21.17MB/97.49MB
2021-01-27T07:16:55.3614458Z e[1Ae[2K
2021-01-27T07:16:55.3615321Z 	[bfb6590761d9]: Extracting [=============>                                     ]  26.18MB/97.49MB
2021-01-27T07:16:55.4678809Z e[1Ae[2K
2021-01-27T07:16:55.4679366Z 	[bfb6590761d9]: Extracting [===============>                                   ]  30.64MB/97.49MB
2021-01-27T07:16:55.5782267Z e[1Ae[2K
2021-01-27T07:16:55.5783212Z 	[bfb6590761d9]: Extracting [==================>                                ]  35.65MB/97.49MB
2021-01-27T07:16:55.6828515Z e[1Ae[2K
2021-01-27T07:16:55.6829146Z 	[bfb6590761d9]: Extracting [=====================>                             ]  41.22MB/97.49MB
2021-01-27T07:16:55.7872504Z e[1Ae[2K
2021-01-27T07:16:55.7873094Z 	[bfb6590761d9]: Extracting [=======================>                           ]  46.79MB/97.49MB
2021-01-27T07:16:55.8951924Z e[1Ae[2K
2021-01-27T07:16:55.8952592Z 	[bfb6590761d9]: Extracting [==========================>                        ]  51.81MB/97.49MB
2021-01-27T07:16:56.0112208Z e[1Ae[2K
2021-01-27T07:16:56.0112830Z 	[bfb6590761d9]: Extracting [=============================>                     ]  56.82MB/97.49MB
2021-01-27T07:16:56.1143498Z e[1Ae[2K
2021-01-27T07:16:56.1144088Z 	[bfb6590761d9]: Extracting [===============================>                   ]  60.72MB/97.49MB
2021-01-27T07:16:56.2191780Z e[1Ae[2K
2021-01-27T07:16:56.2192367Z 	[bfb6590761d9]: Extracting [=================================>                 ]  64.62MB/97.49MB
2021-01-27T07:16:56.3201395Z e[1Ae[2K
2021-01-27T07:16:56.3202026Z 	[bfb6590761d9]: Extracting [===================================>               ]  68.52MB/97.49MB
2021-01-27T07:16:56.4254265Z e[1Ae[2K
2021-01-27T07:16:56.4254849Z 	[bfb6590761d9]: Extracting [====================================>              ]  70.75MB/97.49MB
2021-01-27T07:16:56.5393253Z e[1Ae[2K
2021-01-27T07:16:56.5393832Z 	[bfb6590761d9]: Extracting [======================================>            ]  75.76MB/97.49MB
2021-01-27T07:16:56.6566433Z e[1Ae[2K
2021-01-27T07:16:56.6567142Z 	[bfb6590761d9]: Extracting [========================================>          ]   79.1MB/97.49MB
2021-01-27T07:16:56.7609122Z e[1Ae[2K
2021-01-27T07:16:56.7609767Z 	[bfb6590761d9]: Extracting [==========================================>        ]     83MB/97.49MB
2021-01-27T07:16:56.8732475Z e[1Ae[2K
2021-01-27T07:16:56.8733080Z 	[bfb6590761d9]: Extracting [============================================>      ]  87.46MB/97.49MB
2021-01-27T07:16:56.9789025Z e[1Ae[2K
2021-01-27T07:16:56.9790711Z 	[bfb6590761d9]: Extracting [===============================================>   ]  91.91MB/97.49MB
2021-01-27T07:16:57.0933265Z e[1Ae[2K
2021-01-27T07:16:57.0933854Z 	[bfb6590761d9]: Extracting [================================================>  ]  95.26MB/97.49MB
2021-01-27T07:16:57.2169944Z e[1Ae[2K
2021-01-27T07:16:57.2170571Z 	[bfb6590761d9]: Extracting [=================================================> ]  97.48MB/97.49MB
2021-01-27T07:16:57.2261029Z e[1Ae[2K
2021-01-27T07:17:00.5586196Z 
2021-01-27T07:17:00.6090331Z 
2021-01-27T07:17:00.6091648Z 	[648faa4fd47b]: Extracting [>                                                  ]  32.77kB/2.691MB
2021-01-27T07:17:00.7072295Z e[1Ae[2K
2021-01-27T07:17:00.7072937Z 	[648faa4fd47b]: Extracting [===========================================>       ]  2.327MB/2.691MB
2021-01-27T07:17:00.7238120Z e[1Ae[2K
2021-01-27T07:17:00.7326046Z 
2021-01-27T07:17:00.7348709Z 
2021-01-27T07:17:00.7349680Z 	[d5a478dca8b1]: Extracting [>                                                  ]  65.54kB/4.019MB
2021-01-27T07:17:00.8358001Z e[1Ae[2K
2021-01-27T07:17:00.8359142Z 	[d5a478dca8b1]: Extracting [==========================>                        ]  2.097MB/4.019MB
2021-01-27T07:17:00.8768673Z e[1Ae[2K
2021-01-27T07:17:00.8871293Z 
2021-01-27T07:17:00.8886925Z 
2021-01-27T07:17:00.8890172Z 
2021-01-27T07:17:00.9532266Z 
2021-01-27T07:17:00.9547332Z 
2021-01-27T07:17:00.9556580Z 
2021-01-27T07:17:01.0177493Z 
2021-01-27T07:17:01.0207115Z 
2021-01-27T07:17:01.0227316Z 
2021-01-27T07:17:01.0236835Z 
2021-01-27T07:17:01.0237486Z > Processing browser "chrome"...
2021-01-27T07:17:01.0239042Z - Fetching tags for image selenoid/chrome
2021-01-27T07:17:01.0240401Z registry.tags url=https://registry.hub.docker.com/v2/selenoid/chrome/tags/list repository=selenoid/chrome
2021-01-27T07:17:01.5349981Z - Pulling image selenoid/chrome:88.0
2021-01-27T07:17:02.0746250Z 
2021-01-27T07:17:02.0766024Z 
2021-01-27T07:17:02.0781766Z 
2021-01-27T07:17:02.0800712Z 
2021-01-27T07:17:02.0815006Z 
2021-01-27T07:17:02.0833774Z 
2021-01-27T07:17:02.0850999Z 
2021-01-27T07:17:02.0932489Z 
2021-01-27T07:17:02.0949587Z 
2021-01-27T07:17:02.0966402Z 
2021-01-27T07:17:02.0983781Z 
2021-01-27T07:17:02.0984330Z 
2021-01-27T07:17:02.0985686Z 
2021-01-27T07:17:02.0986564Z 
2021-01-27T07:17:02.0987297Z 
2021-01-27T07:17:02.0987753Z 
2021-01-27T07:17:02.0988136Z 
2021-01-27T07:17:02.3457768Z 
2021-01-27T07:17:02.3458492Z 	[6f519e6982b1]: Downloading [>                                                  ]  60.01kB/5.82MB
2021-01-27T07:17:02.3584249Z e[1Ae[2K
2021-01-27T07:17:02.3584865Z 	[44db3e83a2ac]: Downloading [>                                                  ]  22.32kB/2.159MB
2021-01-27T07:17:02.4078336Z e[1Ae[2K
2021-01-27T07:17:02.4078961Z 	[20b7fe14c7f3]: Downloading [>                                                  ]  539.7kB/108.1MB
2021-01-27T07:17:02.4430357Z e[1Ae[2K
2021-01-27T07:17:02.4433721Z 
2021-01-27T07:17:02.4562102Z 
2021-01-27T07:17:02.4562958Z 	[6f519e6982b1]: Downloading [==================>                                ]   2.21MB/5.82MB
2021-01-27T07:17:02.5105359Z e[1Ae[2K
2021-01-27T07:17:02.5105952Z 	[20b7fe14c7f3]: Downloading [====>                                              ]   9.12MB/108.1MB
2021-01-27T07:17:02.5386655Z e[1Ae[2K
2021-01-27T07:17:02.5387304Z 	[6f519e6982b1]: Verifying Checksum [====>                                              ]   9.12MB/108.1MB
2021-01-27T07:17:02.5387970Z e[1Ae[2K
2021-01-27T07:17:02.5388808Z 	[6f519e6982b1]: Download complete [====>                                              ]   9.12MB/108.1MB
2021-01-27T07:17:02.6140230Z e[1Ae[2K
2021-01-27T07:17:02.6140783Z 	[20b7fe14c7f3]: Downloading [===========>                                       ]  24.14MB/108.1MB
2021-01-27T07:17:02.6937144Z e[1Ae[2K
2021-01-27T07:17:02.6937888Z 	[4820bf51eaaf]: Downloading [===============>                                   ]     424B/1.397kB
2021-01-27T07:17:02.6938534Z e[1Ae[2K
2021-01-27T07:17:02.6938776Z 
2021-01-27T07:17:02.6939928Z 
2021-01-27T07:17:02.7139127Z 
2021-01-27T07:17:02.7140020Z 	[20b7fe14c7f3]: Downloading [==================>                                ]   40.8MB/108.1MB
2021-01-27T07:17:02.7836074Z e[1Ae[2K
2021-01-27T07:17:02.7836827Z 	[ddac2d6d4777]: Downloading [>                                                  ]  60.67kB/5.82MB
2021-01-27T07:17:02.8152829Z e[1Ae[2K
2021-01-27T07:17:02.8153426Z 	[20b7fe14c7f3]: Downloading [==========================>                        ]  56.34MB/108.1MB
2021-01-27T07:17:02.8838958Z e[1Ae[2K
2021-01-27T07:17:02.8839578Z 	[ddac2d6d4777]: Downloading [======================>                            ]  2.677MB/5.82MB
2021-01-27T07:17:02.9062989Z e[1Ae[2K
2021-01-27T07:17:02.9063750Z 	[ddac2d6d4777]: Verifying Checksum [======================>                            ]  2.677MB/5.82MB
2021-01-27T07:17:02.9064446Z e[1Ae[2K
2021-01-27T07:17:02.9065038Z 	[ddac2d6d4777]: Download complete [======================>                            ]  2.677MB/5.82MB
2021-01-27T07:17:02.9182136Z e[1Ae[2K
2021-01-27T07:17:02.9182792Z 	[20b7fe14c7f3]: Downloading [=================================>                 ]  72.42MB/108.1MB
2021-01-27T07:17:03.0225280Z e[1Ae[2K
2021-01-27T07:17:03.0225977Z 	[20b7fe14c7f3]: Downloading [=======================================>           ]  86.32MB/108.1MB
2021-01-27T07:17:03.1192770Z e[1Ae[2K
2021-01-27T07:17:03.1193460Z 	[20b7fe14c7f3]: Downloading [===============================================>   ]  102.4MB/108.1MB
2021-01-27T07:17:03.1551002Z e[1Ae[2K
2021-01-27T07:17:03.1551696Z 	[20b7fe14c7f3]: Verifying Checksum [===============================================>   ]  102.4MB/108.1MB
2021-01-27T07:17:03.1552358Z e[1Ae[2K
2021-01-27T07:17:03.1552874Z 	[20b7fe14c7f3]: Download complete [===============================================>   ]  102.4MB/108.1MB
2021-01-27T07:17:03.2368570Z e[1Ae[2K
2021-01-27T07:17:03.2369235Z 	[20b7fe14c7f3]: Extracting [>                                                  ]  557.1kB/108.1MB
2021-01-27T07:17:03.3597669Z e[1Ae[2K
2021-01-27T07:17:03.3598266Z 	[20b7fe14c7f3]: Extracting [==>                                                ]  5.571MB/108.1MB
2021-01-27T07:17:03.4640650Z e[1Ae[2K
2021-01-27T07:17:03.4641237Z 	[20b7fe14c7f3]: Extracting [===>                                               ]  8.356MB/108.1MB
2021-01-27T07:17:03.5744957Z e[1Ae[2K
2021-01-27T07:17:03.5745609Z 	[20b7fe14c7f3]: Extracting [======>                                            ]  13.93MB/108.1MB
2021-01-27T07:17:03.6856446Z e[1Ae[2K
2021-01-27T07:17:03.6857085Z 	[20b7fe14c7f3]: Extracting [=========>                                         ]   19.5MB/108.1MB
2021-01-27T07:17:03.7890018Z e[1Ae[2K
2021-01-27T07:17:03.7890657Z 	[20b7fe14c7f3]: Extracting [===========>                                       ]  24.51MB/108.1MB
2021-01-27T07:17:03.8891480Z e[1Ae[2K
2021-01-27T07:17:03.8892143Z 	[20b7fe14c7f3]: Extracting [=============>                                     ]  28.97MB/108.1MB
2021-01-27T07:17:03.9907619Z e[1Ae[2K
2021-01-27T07:17:03.9908274Z 	[20b7fe14c7f3]: Extracting [===============>                                   ]  33.98MB/108.1MB
2021-01-27T07:17:04.0988092Z e[1Ae[2K
2021-01-27T07:17:04.0988735Z 	[20b7fe14c7f3]: Extracting [==================>                                ]  40.11MB/108.1MB
2021-01-27T07:17:04.2068489Z e[1Ae[2K
2021-01-27T07:17:04.2069181Z 	[20b7fe14c7f3]: Extracting [====================>                              ]  45.12MB/108.1MB
2021-01-27T07:17:04.3134084Z e[1Ae[2K
2021-01-27T07:17:04.3134759Z 	[20b7fe14c7f3]: Extracting [=======================>                           ]  50.69MB/108.1MB
2021-01-27T07:17:04.4150803Z e[1Ae[2K
2021-01-27T07:17:04.4151388Z 	[20b7fe14c7f3]: Extracting [==========================>                        ]  56.26MB/108.1MB
2021-01-27T07:17:04.5169493Z e[1Ae[2K
2021-01-27T07:17:04.5170109Z 	[20b7fe14c7f3]: Extracting [============================>                      ]  61.83MB/108.1MB
2021-01-27T07:17:04.6270208Z e[1Ae[2K
2021-01-27T07:17:04.6270791Z 	[20b7fe14c7f3]: Extracting [===============================>                   ]   67.4MB/108.1MB
2021-01-27T07:17:04.7335106Z e[1Ae[2K
2021-01-27T07:17:04.7335706Z 	[20b7fe14c7f3]: Extracting [=================================>                 ]  72.42MB/108.1MB
2021-01-27T07:17:04.8486898Z e[1Ae[2K
2021-01-27T07:17:04.8487794Z 	[20b7fe14c7f3]: Extracting [===================================>               ]  75.76MB/108.1MB
2021-01-27T07:17:04.9618269Z e[1Ae[2K
2021-01-27T07:17:04.9619100Z 	[20b7fe14c7f3]: Extracting [======================================>            ]  82.44MB/108.1MB
2021-01-27T07:17:05.0777243Z e[1Ae[2K
2021-01-27T07:17:05.0778104Z 	[20b7fe14c7f3]: Extracting [========================================>          ]   86.9MB/108.1MB
2021-01-27T07:17:05.1838315Z e[1Ae[2K
2021-01-27T07:17:05.1839291Z 	[20b7fe14c7f3]: Extracting [=========================================>         ]  90.24MB/108.1MB
2021-01-27T07:17:05.2911992Z e[1Ae[2K
2021-01-27T07:17:05.2912682Z 	[20b7fe14c7f3]: Extracting [===========================================>       ]  94.14MB/108.1MB
2021-01-27T07:17:05.3988240Z e[1Ae[2K
2021-01-27T07:17:05.3988887Z 	[20b7fe14c7f3]: Extracting [===============================================>   ]  103.1MB/108.1MB
2021-01-27T07:17:05.5037433Z e[1Ae[2K
2021-01-27T07:17:05.5038109Z 	[20b7fe14c7f3]: Extracting [=================================================> ]    107MB/108.1MB
2021-01-27T07:17:05.5606521Z e[1Ae[2K
2021-01-27T07:17:06.8224013Z 
2021-01-27T07:17:06.8257568Z 
2021-01-27T07:17:06.8258753Z 	[44db3e83a2ac]: Extracting [>                                                  ]  32.77kB/2.159MB
2021-01-27T07:17:06.8935946Z e[1Ae[2K
2021-01-27T07:17:06.8939048Z 
2021-01-27T07:17:06.9038747Z 
2021-01-27T07:17:06.9073064Z 
2021-01-27T07:17:06.9073791Z 	[6f519e6982b1]: Extracting [>                                                  ]  65.54kB/5.82MB
2021-01-27T07:17:07.0078637Z e[1Ae[2K
2021-01-27T07:17:07.0079515Z 	[6f519e6982b1]: Extracting [====================>                              ]  2.425MB/5.82MB
2021-01-27T07:17:07.0709336Z e[1Ae[2K
2021-01-27T07:17:07.0869285Z 
2021-01-27T07:17:07.0883129Z 
2021-01-27T07:17:07.0886737Z 
2021-01-27T07:17:07.1493546Z 
2021-01-27T07:17:07.1521030Z 
2021-01-27T07:17:07.1521936Z 	[ddac2d6d4777]: Extracting [>                                                  ]  65.54kB/5.82MB
2021-01-27T07:17:07.2528518Z e[1Ae[2K
2021-01-27T07:17:07.2529127Z 	[ddac2d6d4777]: Extracting [=========================>                         ]  3.015MB/5.82MB
2021-01-27T07:17:07.3392765Z e[1Ae[2K
2021-01-27T07:17:07.3518912Z 
2021-01-27T07:17:07.3553350Z 
2021-01-27T07:17:07.3583398Z 
2021-01-27T07:17:07.3589636Z 
2021-01-27T07:17:07.3590802Z - Pulling image selenoid/chrome:87.0
2021-01-27T07:17:07.9070328Z 
2021-01-27T07:17:07.9094892Z 
2021-01-27T07:17:07.9112069Z 
2021-01-27T07:17:07.9134306Z 
2021-01-27T07:17:07.9163606Z 
2021-01-27T07:17:07.9188627Z 
2021-01-27T07:17:07.9207205Z 
2021-01-27T07:17:07.9239663Z 
2021-01-27T07:17:07.9275566Z 
2021-01-27T07:17:07.9297262Z 
2021-01-27T07:17:07.9318610Z 
2021-01-27T07:17:07.9318934Z 
2021-01-27T07:17:07.9319142Z 
2021-01-27T07:17:07.9324304Z 
2021-01-27T07:17:07.9326724Z 
2021-01-27T07:17:07.9328882Z 
2021-01-27T07:17:07.9330971Z 
2021-01-27T07:17:08.1866822Z 
2021-01-27T07:17:08.1868062Z 	[f56bd0c01fbb]: Downloading [>                                                  ]  22.49kB/2.16MB
2021-01-27T07:17:08.1933263Z e[1Ae[2K
2021-01-27T07:17:08.1933865Z 	[8ec590675eb2]: Downloading [>                                                  ]  59.25kB/5.687MB
2021-01-27T07:17:08.2420132Z e[1Ae[2K
2021-01-27T07:17:08.2420743Z 	[35e885c64b84]: Downloading [>                                                  ]  527.6kB/108MB
2021-01-27T07:17:08.2793726Z e[1Ae[2K
2021-01-27T07:17:08.2794394Z 	[f56bd0c01fbb]: Verifying Checksum [>                                                  ]  527.6kB/108MB
2021-01-27T07:17:08.2795078Z e[1Ae[2K
2021-01-27T07:17:08.2795605Z 	[f56bd0c01fbb]: Download complete [>                                                  ]  527.6kB/108MB
2021-01-27T07:17:08.2958859Z e[1Ae[2K
2021-01-27T07:17:08.2959473Z 	[8ec590675eb2]: Downloading [==================================>                ]  3.947MB/5.687MB
2021-01-27T07:17:08.3239456Z e[1Ae[2K
2021-01-27T07:17:08.3240099Z 	[8ec590675eb2]: Verifying Checksum [==================================>                ]  3.947MB/5.687MB
2021-01-27T07:17:08.3244955Z e[1Ae[2K
2021-01-27T07:17:08.3245529Z 	[8ec590675eb2]: Download complete [==================================>                ]  3.947MB/5.687MB
2021-01-27T07:17:08.3489381Z e[1Ae[2K
2021-01-27T07:17:08.3489944Z 	[35e885c64b84]: Downloading [====>                                              ]  9.649MB/108MB
2021-01-27T07:17:08.4490966Z e[1Ae[2K
2021-01-27T07:17:08.4491623Z 	[35e885c64b84]: Downloading [===========>                                       ]  24.69MB/108MB
2021-01-27T07:17:08.5392858Z e[1Ae[2K
2021-01-27T07:17:08.5393735Z 	[1f467695af1d]: Downloading [======================>                            ]     424B/961B
2021-01-27T07:17:08.5395474Z e[1Ae[2K
2021-01-27T07:17:08.5395865Z 
2021-01-27T07:17:08.5396079Z 
2021-01-27T07:17:08.5502941Z 
2021-01-27T07:17:08.5503682Z 	[35e885c64b84]: Downloading [==================>                                ]  40.27MB/108MB
2021-01-27T07:17:08.5887511Z e[1Ae[2K
2021-01-27T07:17:08.5888148Z 	[7ddaa8b13b95]: Downloading [>                                                  ]  58.06kB/5.687MB
2021-01-27T07:17:08.6627674Z e[1Ae[2K
2021-01-27T07:17:08.6628305Z 	[35e885c64b84]: Downloading [=======================>                           ]  49.87MB/108MB
2021-01-27T07:17:08.6884139Z e[1Ae[2K
2021-01-27T07:17:08.6885515Z 	[7ddaa8b13b95]: Downloading [==================>                                ]   2.12MB/5.687MB
2021-01-27T07:17:08.7167789Z e[1Ae[2K
2021-01-27T07:17:08.7168415Z 	[7ddaa8b13b95]: Verifying Checksum [==================>                                ]   2.12MB/5.687MB
2021-01-27T07:17:08.7169325Z e[1Ae[2K
2021-01-27T07:17:08.7169872Z 	[7ddaa8b13b95]: Download complete [==================>                                ]   2.12MB/5.687MB
2021-01-27T07:17:08.7664892Z e[1Ae[2K
2021-01-27T07:17:08.7665499Z 	[35e885c64b84]: Downloading [=============================>                     ]  63.26MB/108MB
2021-01-27T07:17:08.8666234Z e[1Ae[2K
2021-01-27T07:17:08.8666823Z 	[35e885c64b84]: Downloading [====================================>              ]  78.77MB/108MB
2021-01-27T07:17:08.9688156Z e[1Ae[2K
2021-01-27T07:17:08.9688817Z 	[35e885c64b84]: Downloading [========================================>          ]  87.36MB/108MB
2021-01-27T07:17:09.0732957Z e[1Ae[2K
2021-01-27T07:17:09.0734756Z 	[35e885c64b84]: Downloading [============================================>      ]  95.39MB/108MB
2021-01-27T07:17:09.1870387Z e[1Ae[2K
2021-01-27T07:17:09.1871057Z 	[35e885c64b84]: Downloading [===============================================>   ]  103.4MB/108MB
2021-01-27T07:17:09.2286106Z e[1Ae[2K
2021-01-27T07:17:09.2286864Z 	[35e885c64b84]: Verifying Checksum [===============================================>   ]  103.4MB/108MB
2021-01-27T07:17:09.2287518Z e[1Ae[2K
2021-01-27T07:17:09.2288042Z 	[35e885c64b84]: Download complete [===============================================>   ]  103.4MB/108MB
2021-01-27T07:17:09.2990699Z e[1Ae[2K
2021-01-27T07:17:09.2991400Z 	[35e885c64b84]: Extracting [>                                                  ]  557.1kB/108MB
2021-01-27T07:17:09.4091319Z e[1Ae[2K
2021-01-27T07:17:09.4091935Z 	[35e885c64b84]: Extracting [==>                                                ]  5.571MB/108MB
2021-01-27T07:17:09.5106820Z e[1Ae[2K
2021-01-27T07:17:09.5107406Z 	[35e885c64b84]: Extracting [===>                                               ]  8.356MB/108MB
2021-01-27T07:17:09.6258094Z e[1Ae[2K
2021-01-27T07:17:09.6258750Z 	[35e885c64b84]: Extracting [======>                                            ]  13.93MB/108MB
2021-01-27T07:17:09.7309533Z e[1Ae[2K
2021-01-27T07:17:09.7310302Z 	[35e885c64b84]: Extracting [========>                                          ]  18.94MB/108MB
2021-01-27T07:17:09.8330359Z e[1Ae[2K
2021-01-27T07:17:09.8330992Z 	[35e885c64b84]: Extracting [===========>                                       ]  24.51MB/108MB
2021-01-27T07:17:09.9445837Z e[1Ae[2K
2021-01-27T07:17:09.9446438Z 	[35e885c64b84]: Extracting [=============>                                     ]  30.08MB/108MB
2021-01-27T07:17:10.0446542Z e[1Ae[2K
2021-01-27T07:17:10.0447224Z 	[35e885c64b84]: Extracting [================>                                  ]  35.09MB/108MB
2021-01-27T07:17:10.1477702Z e[1Ae[2K
2021-01-27T07:17:10.1478384Z 	[35e885c64b84]: Extracting [==================>                                ]  39.55MB/108MB
2021-01-27T07:17:10.2479854Z e[1Ae[2K
2021-01-27T07:17:10.2480480Z 	[35e885c64b84]: Extracting [====================>                              ]  44.56MB/108MB
2021-01-27T07:17:10.3522672Z e[1Ae[2K
2021-01-27T07:17:10.3523389Z 	[35e885c64b84]: Extracting [=======================>                           ]  50.14MB/108MB
2021-01-27T07:17:10.4577077Z e[1Ae[2K
2021-01-27T07:17:10.4577763Z 	[35e885c64b84]: Extracting [=========================>                         ]  55.71MB/108MB
2021-01-27T07:17:10.5580398Z e[1Ae[2K
2021-01-27T07:17:10.5580975Z 	[35e885c64b84]: Extracting [============================>                      ]  60.72MB/108MB
2021-01-27T07:17:10.6584582Z e[1Ae[2K
2021-01-27T07:17:10.6585158Z 	[35e885c64b84]: Extracting [==============================>                    ]  66.29MB/108MB
2021-01-27T07:17:10.7656719Z e[1Ae[2K
2021-01-27T07:17:10.7657360Z 	[35e885c64b84]: Extracting [=================================>                 ]  71.86MB/108MB
2021-01-27T07:17:10.8714147Z e[1Ae[2K
2021-01-27T07:17:10.8714786Z 	[35e885c64b84]: Extracting [==================================>                ]   75.2MB/108MB
2021-01-27T07:17:10.9755616Z e[1Ae[2K
2021-01-27T07:17:10.9756258Z 	[35e885c64b84]: Extracting [=====================================>             ]  81.89MB/108MB
2021-01-27T07:17:11.0853500Z e[1Ae[2K
2021-01-27T07:17:11.0854088Z 	[35e885c64b84]: Extracting [=======================================>           ]  86.34MB/108MB
2021-01-27T07:17:11.1893414Z e[1Ae[2K
2021-01-27T07:17:11.1894044Z 	[35e885c64b84]: Extracting [=========================================>         ]  89.69MB/108MB
2021-01-27T07:17:11.3021258Z e[1Ae[2K
2021-01-27T07:17:11.3021969Z 	[35e885c64b84]: Extracting [===========================================>       ]  93.59MB/108MB
2021-01-27T07:17:11.4132689Z e[1Ae[2K
2021-01-27T07:17:11.4133397Z 	[35e885c64b84]: Extracting [===============================================>   ]  103.1MB/108MB
2021-01-27T07:17:11.5139864Z e[1Ae[2K
2021-01-27T07:17:11.5140489Z 	[35e885c64b84]: Extracting [=================================================> ]    107MB/108MB
2021-01-27T07:17:11.5759291Z e[1Ae[2K
2021-01-27T07:17:13.2474598Z 
2021-01-27T07:17:14.6539142Z 
2021-01-27T07:17:14.6540392Z 	[f56bd0c01fbb]: Extracting [>                                                  ]  32.77kB/2.16MB
2021-01-27T07:17:14.7267787Z e[1Ae[2K
2021-01-27T07:17:14.7359915Z 
2021-01-27T07:17:14.7384410Z 
2021-01-27T07:17:14.7385099Z 	[8ec590675eb2]: Extracting [>                                                  ]  65.54kB/5.687MB
2021-01-27T07:17:14.8391979Z e[1Ae[2K
2021-01-27T07:17:14.8392669Z 	[8ec590675eb2]: Extracting [=============================>                     ]  3.342MB/5.687MB
2021-01-27T07:17:14.8836345Z e[1Ae[2K
2021-01-27T07:17:14.8957737Z 
2021-01-27T07:17:14.8974960Z 
2021-01-27T07:17:14.8978382Z 
2021-01-27T07:17:14.9590899Z 
2021-01-27T07:17:14.9611269Z 
2021-01-27T07:17:14.9612006Z 	[7ddaa8b13b95]: Extracting [>                                                  ]  65.54kB/5.687MB
2021-01-27T07:17:15.0621198Z e[1Ae[2K
2021-01-27T07:17:15.0621862Z 	[7ddaa8b13b95]: Extracting [===================>                               ]  2.163MB/5.687MB
2021-01-27T07:17:15.1390863Z e[1Ae[2K
2021-01-27T07:17:15.1515965Z 
2021-01-27T07:17:15.1543633Z 
2021-01-27T07:17:15.1559608Z 
2021-01-27T07:17:15.1565058Z 
2021-01-27T07:17:15.1565817Z > Processing browser "opera"...
2021-01-27T07:17:15.1567168Z - Fetching tags for image selenoid/opera
2021-01-27T07:17:15.1568443Z registry.tags url=https://registry.hub.docker.com/v2/selenoid/opera/tags/list repository=selenoid/opera
2021-01-27T07:17:15.6734498Z - Pulling image selenoid/opera:73.0
2021-01-27T07:17:16.2177147Z 
2021-01-27T07:17:16.2200380Z 
2021-01-27T07:17:16.2231113Z 
2021-01-27T07:17:16.2257678Z 
2021-01-27T07:17:16.2275152Z 
2021-01-27T07:17:16.2297216Z 
2021-01-27T07:17:16.2316259Z 
2021-01-27T07:17:16.2334434Z 
2021-01-27T07:17:16.2394704Z 
2021-01-27T07:17:16.2414479Z 
2021-01-27T07:17:16.2441566Z 
2021-01-27T07:17:16.2441917Z 
2021-01-27T07:17:16.2442144Z 
2021-01-27T07:17:16.2442364Z 
2021-01-27T07:17:16.2442566Z 
2021-01-27T07:17:16.4990302Z 
2021-01-27T07:17:16.4991109Z 	[75bdc7adfa11]: Downloading [>                                                  ]  66.58kB/6.243MB
2021-01-27T07:17:16.5084452Z e[1Ae[2K
2021-01-27T07:17:16.5085010Z 	[6741544db480]: Downloading [=======================>                           ]     424B/909B
2021-01-27T07:17:16.5085846Z e[1Ae[2K
2021-01-27T07:17:16.5086145Z 
2021-01-27T07:17:16.5086393Z 
2021-01-27T07:17:16.5519375Z 
2021-01-27T07:17:16.5520655Z 	[9bcee00f85d2]: Downloading [>                                                  ]  531.7kB/102.9MB
2021-01-27T07:17:16.5993015Z e[1Ae[2K
2021-01-27T07:17:16.5994078Z 	[75bdc7adfa11]: Downloading [===================================>               ]  4.471MB/6.243MB
2021-01-27T07:17:16.6096362Z e[1Ae[2K
2021-01-27T07:17:16.6096994Z 	[75bdc7adfa11]: Verifying Checksum [===================================>               ]  4.471MB/6.243MB
2021-01-27T07:17:16.6098237Z e[1Ae[2K
2021-01-27T07:17:16.6098923Z 	[75bdc7adfa11]: Download complete [===================================>               ]  4.471MB/6.243MB
2021-01-27T07:17:16.6595739Z e[1Ae[2K
2021-01-27T07:17:16.6596743Z 	[9bcee00f85d2]: Downloading [=====>                                             ]  11.23MB/102.9MB
2021-01-27T07:17:16.7564907Z e[1Ae[2K
2021-01-27T07:17:16.7565540Z 	[9bcee00f85d2]: Downloading [============>                                      ]  25.67MB/102.9MB
2021-01-27T07:17:16.7826266Z e[1Ae[2K
2021-01-27T07:17:16.7827145Z 	[fda416c0dbd4]: Downloading [>                                                  ]  63.48kB/6.243MB
2021-01-27T07:17:16.8598234Z e[1Ae[2K
2021-01-27T07:17:16.8598854Z 	[9bcee00f85d2]: Downloading [====================>                              ]  41.21MB/102.9MB
2021-01-27T07:17:16.8827972Z e[1Ae[2K
2021-01-27T07:17:16.8830540Z 	[fda416c0dbd4]: Downloading [======================>                            ]  2.776MB/6.243MB
2021-01-27T07:17:16.9080245Z e[1Ae[2K
2021-01-27T07:17:16.9080599Z 
2021-01-27T07:17:16.9080809Z 
2021-01-27T07:17:16.9641564Z 
2021-01-27T07:17:16.9642454Z 	[9bcee00f85d2]: Downloading [===========================>                       ]   55.7MB/102.9MB
2021-01-27T07:17:17.0646166Z e[1Ae[2K
2021-01-27T07:17:17.0646875Z 	[9bcee00f85d2]: Downloading [=================================>                 ]  69.61MB/102.9MB
2021-01-27T07:17:17.1670319Z e[1Ae[2K
2021-01-27T07:17:17.1670930Z 	[9bcee00f85d2]: Downloading [=========================================>         ]  85.67MB/102.9MB
2021-01-27T07:17:17.2689596Z e[1Ae[2K
2021-01-27T07:17:17.2690275Z 	[9bcee00f85d2]: Downloading [================================================>  ]   99.6MB/102.9MB
2021-01-27T07:17:17.2891960Z e[1Ae[2K
2021-01-27T07:17:17.2892636Z 	[9bcee00f85d2]: Verifying Checksum [================================================>  ]   99.6MB/102.9MB
2021-01-27T07:17:17.2895953Z e[1Ae[2K
2021-01-27T07:17:17.2896526Z 	[9bcee00f85d2]: Download complete [================================================>  ]   99.6MB/102.9MB
2021-01-27T07:17:17.3597846Z e[1Ae[2K
2021-01-27T07:17:17.3599729Z 	[9bcee00f85d2]: Extracting [>                                                  ]  557.1kB/102.9MB
2021-01-27T07:17:17.4622699Z e[1Ae[2K
2021-01-27T07:17:17.4623430Z 	[9bcee00f85d2]: Extracting [=>                                                 ]  3.899MB/102.9MB
2021-01-27T07:17:17.5693770Z e[1Ae[2K
2021-01-27T07:17:17.5694391Z 	[9bcee00f85d2]: Extracting [====>                                              ]  8.913MB/102.9MB
2021-01-27T07:17:17.6785643Z e[1Ae[2K
2021-01-27T07:17:17.6786251Z 	[9bcee00f85d2]: Extracting [======>                                            ]  13.37MB/102.9MB
2021-01-27T07:17:17.7876611Z e[1Ae[2K
2021-01-27T07:17:17.7877279Z 	[9bcee00f85d2]: Extracting [========>                                          ]  17.27MB/102.9MB
2021-01-27T07:17:17.8968902Z e[1Ae[2K
2021-01-27T07:17:17.8969576Z 	[9bcee00f85d2]: Extracting [=========>                                         ]  20.05MB/102.9MB
2021-01-27T07:17:17.9970940Z e[1Ae[2K
2021-01-27T07:17:17.9971616Z 	[9bcee00f85d2]: Extracting [===========>                                       ]   23.4MB/102.9MB
2021-01-27T07:17:18.1047278Z e[1Ae[2K
2021-01-27T07:17:18.1047945Z 	[9bcee00f85d2]: Extracting [==============>                                    ]  28.97MB/102.9MB
2021-01-27T07:17:18.2119576Z e[1Ae[2K
2021-01-27T07:17:18.2120251Z 	[9bcee00f85d2]: Extracting [================>                                  ]  34.54MB/102.9MB
2021-01-27T07:17:18.3164592Z e[1Ae[2K
2021-01-27T07:17:18.3165274Z 	[9bcee00f85d2]: Extracting [===================>                               ]  39.55MB/102.9MB
2021-01-27T07:17:18.4244279Z e[1Ae[2K
2021-01-27T07:17:18.5247008Z 	[9bcee00f85d2]: Extracting [=====================>                             ]  44.56MB/102.9MB
2021-01-27T07:17:18.5248151Z e[1Ae[2K
2021-01-27T07:17:18.5248719Z 	[9bcee00f85d2]: Extracting [========================>                          ]  49.58MB/102.9MB
2021-01-27T07:17:18.6294551Z e[1Ae[2K
2021-01-27T07:17:18.6295166Z 	[9bcee00f85d2]: Extracting [==========================>                        ]  55.15MB/102.9MB
2021-01-27T07:17:18.7316165Z e[1Ae[2K
2021-01-27T07:17:18.7316768Z 	[9bcee00f85d2]: Extracting [=============================>                     ]  60.72MB/102.9MB
2021-01-27T07:17:18.8351168Z e[1Ae[2K
2021-01-27T07:17:18.8351786Z 	[9bcee00f85d2]: Extracting [================================>                  ]  66.29MB/102.9MB
2021-01-27T07:17:18.9432508Z e[1Ae[2K
2021-01-27T07:17:18.9433106Z 	[9bcee00f85d2]: Extracting [==================================>                ]   71.3MB/102.9MB
2021-01-27T07:17:19.0486099Z e[1Ae[2K
2021-01-27T07:17:19.0486702Z 	[9bcee00f85d2]: Extracting [=====================================>             ]  76.32MB/102.9MB
2021-01-27T07:17:19.1492086Z e[1Ae[2K
2021-01-27T07:17:19.1492719Z 	[9bcee00f85d2]: Extracting [======================================>            ]  79.66MB/102.9MB
2021-01-27T07:17:19.2633894Z e[1Ae[2K
2021-01-27T07:17:19.3640297Z 	[9bcee00f85d2]: Extracting [========================================>          ]  82.44MB/102.9MB
2021-01-27T07:17:19.3641455Z e[1Ae[2K
2021-01-27T07:17:19.3642184Z 	[9bcee00f85d2]: Extracting [============================================>      ]   90.8MB/102.9MB
2021-01-27T07:17:19.4726152Z e[1Ae[2K
2021-01-27T07:17:19.4726818Z 	[9bcee00f85d2]: Extracting [================================================>  ]  99.71MB/102.9MB
2021-01-27T07:17:19.5737619Z e[1Ae[2K
2021-01-27T07:17:19.5738277Z 	[9bcee00f85d2]: Extracting [=================================================> ]  101.9MB/102.9MB
2021-01-27T07:17:19.6751936Z e[1Ae[2K
2021-01-27T07:17:20.7044363Z 
2021-01-27T07:17:20.7087981Z 
2021-01-27T07:17:20.7088736Z 	[75bdc7adfa11]: Extracting [>                                                  ]  65.54kB/6.243MB
2021-01-27T07:17:20.8096621Z e[1Ae[2K
2021-01-27T07:17:20.8097246Z 	[75bdc7adfa11]: Extracting [=======================>                           ]  2.884MB/6.243MB
2021-01-27T07:17:20.8906010Z e[1Ae[2K
2021-01-27T07:17:20.9040530Z 
2021-01-27T07:17:20.9062178Z 
2021-01-27T07:17:20.9068264Z 
2021-01-27T07:17:20.9668184Z 
2021-01-27T07:17:20.9698752Z 
2021-01-27T07:17:20.9699640Z 	[fda416c0dbd4]: Extracting [>                                                  ]  65.54kB/6.243MB
2021-01-27T07:17:21.0702777Z e[1Ae[2K
2021-01-27T07:17:21.0704712Z 	[fda416c0dbd4]: Extracting [========================>                          ]   3.08MB/6.243MB
2021-01-27T07:17:21.1456634Z e[1Ae[2K
2021-01-27T07:17:21.1592261Z 
2021-01-27T07:17:21.1625487Z 
2021-01-27T07:17:21.1648237Z 
2021-01-27T07:17:21.1653237Z 
2021-01-27T07:17:21.1655907Z - Pulling image selenoid/opera:72.0
2021-01-27T07:17:21.7674419Z 
2021-01-27T07:17:21.7702411Z 
2021-01-27T07:17:21.7724548Z 
2021-01-27T07:17:21.7743972Z 
2021-01-27T07:17:21.7767791Z 
2021-01-27T07:17:21.7796971Z 
2021-01-27T07:17:21.7816062Z 
2021-01-27T07:17:21.7837891Z 
2021-01-27T07:17:21.7858931Z 
2021-01-27T07:17:21.7877241Z 
2021-01-27T07:17:21.7897602Z 
2021-01-27T07:17:21.7898316Z 
2021-01-27T07:17:21.7898769Z 
2021-01-27T07:17:21.7899112Z 
2021-01-27T07:17:21.7904106Z 
2021-01-27T07:17:22.0395571Z 
2021-01-27T07:17:22.0399618Z 	[e3fbd6c38d60]: Downloading [=======================>                           ]     425B/898B
2021-01-27T07:17:22.0400734Z e[1Ae[2K
2021-01-27T07:17:22.0400979Z 
2021-01-27T07:17:22.0401207Z 
2021-01-27T07:17:22.0533936Z 
2021-01-27T07:17:22.0535638Z 	[04a7bfd85c2e]: Downloading [>                                                  ]  62.35kB/6.16MB
2021-01-27T07:17:22.1092274Z e[1Ae[2K
2021-01-27T07:17:22.1092884Z 	[6ac49c452ecc]: Downloading [>                                                  ]  539.1kB/101.3MB
2021-01-27T07:17:22.1542019Z e[1Ae[2K
2021-01-27T07:17:22.1542625Z 	[04a7bfd85c2e]: Downloading [==================================>                ]  4.262MB/6.16MB
2021-01-27T07:17:22.1667636Z e[1Ae[2K
2021-01-27T07:17:22.1667968Z 
2021-01-27T07:17:22.1668196Z 
2021-01-27T07:17:22.2105718Z 
2021-01-27T07:17:22.2106519Z 	[6ac49c452ecc]: Downloading [=====>                                             ]  11.82MB/101.3MB
2021-01-27T07:17:22.3113105Z e[1Ae[2K
2021-01-27T07:17:22.3113815Z 	[6ac49c452ecc]: Downloading [=============>                                     ]   27.9MB/101.3MB
2021-01-27T07:17:22.3121589Z e[1Ae[2K
2021-01-27T07:17:22.3122168Z 	[c7ed07de3a9e]: Downloading [>                                                  ]  62.32kB/6.16MB
2021-01-27T07:17:22.4121380Z e[1Ae[2K
2021-01-27T07:17:22.4121953Z 	[6ac49c452ecc]: Downloading [====================>                              ]  42.31MB/101.3MB
2021-01-27T07:17:22.4125299Z e[1Ae[2K
2021-01-27T07:17:22.4125845Z 	[c7ed07de3a9e]: Downloading [===========================>                       ]  3.369MB/6.16MB
2021-01-27T07:17:22.4382898Z e[1Ae[2K
2021-01-27T07:17:22.4383548Z 	[c7ed07de3a9e]: Verifying Checksum [===========================>                       ]  3.369MB/6.16MB
2021-01-27T07:17:22.4384216Z e[1Ae[2K
2021-01-27T07:17:22.4384763Z 	[c7ed07de3a9e]: Download complete [===========================>                       ]  3.369MB/6.16MB
2021-01-27T07:17:22.5148378Z e[1Ae[2K
2021-01-27T07:17:22.5149098Z 	[6ac49c452ecc]: Downloading [============================>                      ]  57.33MB/101.3MB
2021-01-27T07:17:22.6153372Z e[1Ae[2K
2021-01-27T07:17:22.6154074Z 	[6ac49c452ecc]: Downloading [====================================>              ]  73.45MB/101.3MB
2021-01-27T07:17:22.7165229Z e[1Ae[2K
2021-01-27T07:17:22.7165938Z 	[6ac49c452ecc]: Downloading [============================================>      ]  89.53MB/101.3MB
2021-01-27T07:17:22.7891775Z e[1Ae[2K
2021-01-27T07:17:22.7892505Z 	[6ac49c452ecc]: Verifying Checksum [============================================>      ]  89.53MB/101.3MB
2021-01-27T07:17:22.7893154Z e[1Ae[2K
2021-01-27T07:17:22.7893687Z 	[6ac49c452ecc]: Download complete [============================================>      ]  89.53MB/101.3MB
2021-01-27T07:17:22.8544370Z e[1Ae[2K
2021-01-27T07:17:22.8545090Z 	[6ac49c452ecc]: Extracting [>                                                  ]  557.1kB/101.3MB
2021-01-27T07:17:22.9625289Z e[1Ae[2K
2021-01-27T07:17:22.9626410Z 	[6ac49c452ecc]: Extracting [==>                                                ]  5.014MB/101.3MB
2021-01-27T07:17:23.0755647Z e[1Ae[2K
2021-01-27T07:17:23.0756274Z 	[6ac49c452ecc]: Extracting [=====>                                             ]  10.58MB/101.3MB
2021-01-27T07:17:23.1789820Z e[1Ae[2K
2021-01-27T07:17:23.1790431Z 	[6ac49c452ecc]: Extracting [=======>                                           ]  15.04MB/101.3MB
2021-01-27T07:17:23.2964151Z e[1Ae[2K
2021-01-27T07:17:23.2964762Z 	[6ac49c452ecc]: Extracting [=========>                                         ]  18.94MB/101.3MB
2021-01-27T07:17:23.4061700Z e[1Ae[2K
2021-01-27T07:17:23.4062310Z 	[6ac49c452ecc]: Extracting [==========>                                        ]  21.17MB/101.3MB
2021-01-27T07:17:23.5183148Z e[1Ae[2K
2021-01-27T07:17:23.5184040Z 	[6ac49c452ecc]: Extracting [=============>                                     ]  26.74MB/101.3MB
2021-01-27T07:17:23.6276138Z e[1Ae[2K
2021-01-27T07:17:23.6277086Z 	[6ac49c452ecc]: Extracting [===============>                                   ]   31.2MB/101.3MB
2021-01-27T07:17:23.7376284Z e[1Ae[2K
2021-01-27T07:17:23.7376961Z 	[6ac49c452ecc]: Extracting [==================>                                ]  36.77MB/101.3MB
2021-01-27T07:17:23.8468738Z e[1Ae[2K
2021-01-27T07:17:23.8469388Z 	[6ac49c452ecc]: Extracting [====================>                              ]  41.22MB/101.3MB
2021-01-27T07:17:23.9522197Z e[1Ae[2K
2021-01-27T07:17:23.9522854Z 	[6ac49c452ecc]: Extracting [======================>                            ]  46.24MB/101.3MB
2021-01-27T07:17:24.0588248Z e[1Ae[2K
2021-01-27T07:17:24.0589039Z 	[6ac49c452ecc]: Extracting [=========================>                         ]  51.81MB/101.3MB
2021-01-27T07:17:24.1667921Z e[1Ae[2K
2021-01-27T07:17:24.1668746Z 	[6ac49c452ecc]: Extracting [============================>                      ]  56.82MB/101.3MB
2021-01-27T07:17:24.2723235Z e[1Ae[2K
2021-01-27T07:17:24.2723836Z 	[6ac49c452ecc]: Extracting [==============================>                    ]  61.83MB/101.3MB
2021-01-27T07:17:24.3817600Z e[1Ae[2K
2021-01-27T07:17:24.3818193Z 	[6ac49c452ecc]: Extracting [=================================>                 ]   67.4MB/101.3MB
2021-01-27T07:17:24.4832653Z e[1Ae[2K
2021-01-27T07:17:24.4833248Z 	[6ac49c452ecc]: Extracting [===================================>               ]  72.42MB/101.3MB
2021-01-27T07:17:24.5870963Z e[1Ae[2K
2021-01-27T07:17:24.5871573Z 	[6ac49c452ecc]: Extracting [======================================>            ]  77.99MB/101.3MB
2021-01-27T07:17:24.7067324Z e[1Ae[2K
2021-01-27T07:17:24.7067965Z 	[6ac49c452ecc]: Extracting [========================================>          ]  81.33MB/101.3MB
2021-01-27T07:17:24.8251406Z e[1Ae[2K
2021-01-27T07:17:24.8252049Z 	[6ac49c452ecc]: Extracting [===========================================>       ]  88.57MB/101.3MB
2021-01-27T07:17:24.9298161Z e[1Ae[2K
2021-01-27T07:17:24.9298774Z 	[6ac49c452ecc]: Extracting [================================================>  ]  98.04MB/101.3MB
2021-01-27T07:17:25.0980150Z e[1Ae[2K
2021-01-27T07:17:25.0980810Z 	[6ac49c452ecc]: Extracting [=================================================> ]  100.8MB/101.3MB
2021-01-27T07:17:25.1225268Z e[1Ae[2K
2021-01-27T07:17:28.8566438Z 
2021-01-27T07:17:28.8621147Z 
2021-01-27T07:17:28.8621884Z 	[04a7bfd85c2e]: Extracting [>                                                  ]  65.54kB/6.16MB
2021-01-27T07:17:28.9596063Z e[1Ae[2K
2021-01-27T07:17:28.9596665Z 	[04a7bfd85c2e]: Extracting [========================>                          ]  3.015MB/6.16MB
2021-01-27T07:17:29.0343493Z e[1Ae[2K
2021-01-27T07:17:29.0357286Z 
2021-01-27T07:17:29.0563875Z 
2021-01-27T07:17:29.0593756Z 
2021-01-27T07:17:29.0601928Z 
2021-01-27T07:17:29.1250033Z 
2021-01-27T07:17:29.1269875Z 
2021-01-27T07:17:29.1270615Z 	[c7ed07de3a9e]: Extracting [>                                                  ]  65.54kB/6.16MB
2021-01-27T07:17:29.2276713Z e[1Ae[2K
2021-01-27T07:17:29.2277340Z 	[c7ed07de3a9e]: Extracting [===================>                               ]  2.359MB/6.16MB
2021-01-27T07:17:29.3124060Z e[1Ae[2K
2021-01-27T07:17:29.3139782Z 
2021-01-27T07:17:29.3285065Z 
2021-01-27T07:17:29.3311279Z 
2021-01-27T07:17:29.3363002Z 
2021-01-27T07:17:29.3370323Z 
2021-01-27T07:17:29.3370878Z > Pulling video recorder image...
2021-01-27T07:17:29.3372227Z - Pulling image selenoid/video-recorder:latest-release
2021-01-27T07:17:29.9085672Z 
2021-01-27T07:17:29.9089385Z 
2021-01-27T07:17:29.9091034Z 
2021-01-27T07:17:29.9091538Z 
2021-01-27T07:17:30.1676509Z 
2021-01-27T07:17:30.1680760Z 	[89d9c30c1d48]: Downloading [>                                                  ]  29.13kB/2.787MB
2021-01-27T07:17:30.1798831Z e[1Ae[2K
2021-01-27T07:17:30.1799409Z 	[cf624a2c1c08]: Downloading [>                                                  ]  23.65kB/2.353MB
2021-01-27T07:17:30.1832395Z e[1Ae[2K
2021-01-27T07:17:30.1832959Z 	[9e41a5b73974]: Downloading [>                                                  ]  72.93kB/6.947MB
2021-01-27T07:17:30.2683154Z e[1Ae[2K
2021-01-27T07:17:30.2683815Z 	[89d9c30c1d48]: Downloading [===============================>                   ]  1.751MB/2.787MB
2021-01-27T07:17:30.2757370Z e[1Ae[2K
2021-01-27T07:17:30.2769325Z 
2021-01-27T07:17:30.2772911Z 
2021-01-27T07:17:30.2819657Z 
2021-01-27T07:17:30.2819967Z 
2021-01-27T07:17:30.2828069Z 
2021-01-27T07:17:30.2828604Z 
2021-01-27T07:17:30.2828863Z 
2021-01-27T07:17:30.2829408Z 	[89d9c30c1d48]: Extracting [>                                                  ]  32.77kB/2.787MB
2021-01-27T07:17:30.3828706Z e[1Ae[2K
2021-01-27T07:17:30.3829311Z 	[89d9c30c1d48]: Extracting [============================================>      ]   2.49MB/2.787MB
2021-01-27T07:17:30.3934498Z e[1Ae[2K
2021-01-27T07:17:30.4233258Z 
2021-01-27T07:17:30.4246620Z 
2021-01-27T07:17:30.4247293Z 	[cf624a2c1c08]: Extracting [>                                                  ]  32.77kB/2.353MB
2021-01-27T07:17:30.5249463Z e[1Ae[2K
2021-01-27T07:17:30.5250452Z 	[cf624a2c1c08]: Extracting [================================================>  ]  2.261MB/2.353MB
2021-01-27T07:17:30.5282251Z e[1Ae[2K
2021-01-27T07:17:30.5319332Z 
2021-01-27T07:17:30.5516927Z 
2021-01-27T07:17:30.5517577Z 	[25c489f5925e]: Downloading [================================>                  ]     424B/643B
2021-01-27T07:17:30.5532979Z e[1Ae[2K
2021-01-27T07:17:30.5533266Z 
2021-01-27T07:17:30.5533501Z 
2021-01-27T07:17:30.5743220Z 
2021-01-27T07:17:30.5762484Z 
2021-01-27T07:17:30.5763111Z 	[9e41a5b73974]: Extracting [>                                                  ]   98.3kB/6.947MB
2021-01-27T07:17:30.6768143Z e[1Ae[2K
2021-01-27T07:17:30.6768743Z 	[9e41a5b73974]: Extracting [===================>                               ]  2.654MB/6.947MB
2021-01-27T07:17:30.7571921Z e[1Ae[2K
2021-01-27T07:17:30.7706050Z 
2021-01-27T07:17:30.7723700Z 
2021-01-27T07:17:30.7729226Z 
2021-01-27T07:17:30.8315103Z 
2021-01-27T07:17:30.8376705Z 
2021-01-27T07:17:30.8395915Z 
2021-01-27T07:17:30.8401413Z 
2021-01-27T07:17:30.8402374Z > Configuration saved to /home/runner/.aerokube/selenoid/browsers.json
2021-01-27T07:17:30.8407429Z > Starting Selenoid...
2021-01-27T07:17:36.9818314Z > Successfully started Selenoid
2021-01-27T07:17:37.0061158Z   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
2021-01-27T07:17:37.0064841Z                                  Dload  Upload   Total   Spent    Left  Speed
2021-01-27T07:17:37.0065730Z 
2021-01-27T07:17:37.0147411Z   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
2021-01-27T07:17:37.0151656Z {"total":5,"used":0,"queued":0,"pending":0,"browsers":{"chrome":{"87.0":{},"88.0":{}},"firefox":{"83.0":{},"84.0":{}},"opera":{"72.0":{},"73.0":{}}}}
2021-01-27T07:17:37.0153874Z 100   150  100   150    0     0  16666      0 --:--:-- --:--:-- --:--:-- 16666
7_Run tests
2021-01-27T07:17:37.0202818Z ##[group]Run pytest test.py
2021-01-27T07:17:37.0203403Z e[36;1mpytest test.pye[0m
2021-01-27T07:17:37.0203938Z e[36;1mcontinue-on-error: truee[0m
2021-01-27T07:17:37.0245138Z shell: /bin/bash -e {0}
2021-01-27T07:17:37.0245559Z env:
2021-01-27T07:17:37.0246603Z   pythonLocation: /opt/hostedtoolcache/Python/3.9.1/x64
2021-01-27T07:17:37.0247414Z   LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.1/x64/lib
2021-01-27T07:17:37.0247997Z ##[endgroup]
2021-01-27T07:17:48.7907910Z ============================= test session starts ==============================
2021-01-27T07:17:48.7909489Z platform linux -- Python 3.9.1, pytest-6.2.2, py-1.10.0, pluggy-0.13.1
2021-01-27T07:17:48.7910710Z rootdir: /home/runner/work/website-testing-test/website-testing-test
2021-01-27T07:17:48.7911521Z collected 1 item
2021-01-27T07:17:48.7911828Z 
2021-01-27T07:17:48.8689983Z test.py F                                                                [100%]
2021-01-27T07:17:48.8691235Z 
2021-01-27T07:17:48.8691887Z =================================== FAILURES ===================================
2021-01-27T07:17:48.8692744Z __________________________________ test_title __________________________________
2021-01-27T07:17:48.8693239Z 
2021-01-27T07:17:48.8693809Z     def test_title():
2021-01-27T07:17:48.8695204Z >       driver.get('https://www.google.com/')
2021-01-27T07:17:48.8695885Z 
2021-01-27T07:17:48.8696420Z test.py:12: 
2021-01-27T07:17:48.8697029Z _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
2021-01-27T07:17:48.8698364Z /opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py:333: in get
2021-01-27T07:17:48.8699962Z     self.execute(Command.GET, {'url': url})
2021-01-27T07:17:48.8701467Z /opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py:321: in execute
2021-01-27T07:17:48.8702719Z     self.error_handler.check_response(response)
2021-01-27T07:17:48.8703503Z _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
2021-01-27T07:17:48.8703965Z 
2021-01-27T07:17:48.8705287Z self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x7f964139d040>
2021-01-27T07:17:48.8707137Z response = {'status': 404, 'value': '{"status":13,"value":{"message":"Session timed out or not found"}}\n'}
2021-01-27T07:17:48.8708144Z 
2021-01-27T07:17:48.8708807Z     def check_response(self, response):
2021-01-27T07:17:48.8709452Z         """
2021-01-27T07:17:48.8710936Z         Checks that a JSON response from the WebDriver does not have an error.
2021-01-27T07:17:48.8711673Z     
2021-01-27T07:17:48.8712124Z         :Args:
2021-01-27T07:17:48.8713189Z          - response - The JSON response from the WebDriver server as a dictionary
2021-01-27T07:17:48.8713961Z            object.
2021-01-27T07:17:48.8714441Z     
2021-01-27T07:17:48.8715434Z         :Raises: If the response contains an error message.
2021-01-27T07:17:48.8718073Z         """
2021-01-27T07:17:48.8719071Z         status = response.get('status', None)
2021-01-27T07:17:48.8722674Z         if status is None or status == ErrorCode.SUCCESS:
2021-01-27T07:17:48.8725113Z             return
2021-01-27T07:17:48.8726791Z         value = None
2021-01-27T07:17:48.8727445Z         message = response.get("message", "")
2021-01-27T07:17:48.8729016Z         screen = response.get("screen", "")
2021-01-27T07:17:48.8732099Z         stacktrace = None
2021-01-27T07:17:48.8734129Z         if isinstance(status, int):
2021-01-27T07:17:48.8736343Z             value_json = response.get('value', None)
2021-01-27T07:17:48.8740928Z             if value_json and isinstance(value_json, basestring):
2021-01-27T07:17:48.8741711Z                 import json
2021-01-27T07:17:48.8742218Z                 try:
2021-01-27T07:17:48.8742806Z                     value = json.loads(value_json)
2021-01-27T07:17:48.8743444Z                     if len(value.keys()) == 1:
2021-01-27T07:17:48.8744536Z                         value = value['value']
2021-01-27T07:17:48.8746305Z                     status = value.get('error', None)
2021-01-27T07:17:48.8748763Z                     if status is None:
2021-01-27T07:17:48.8749570Z                         status = value["status"]
2021-01-27T07:17:48.8750368Z                         message = value["value"]
2021-01-27T07:17:48.8751235Z                         if not isinstance(message, basestring):
2021-01-27T07:17:48.8752672Z                             value = message
2021-01-27T07:17:48.8754951Z                             message = message.get('message')
2021-01-27T07:17:48.8755761Z                     else:
2021-01-27T07:17:48.8756722Z                         message = value.get('message', None)
2021-01-27T07:17:48.8757517Z                 except ValueError:
2021-01-27T07:17:48.8758261Z                     pass
2021-01-27T07:17:48.8758786Z     
2021-01-27T07:17:48.8759608Z         exception_class = ErrorInResponseException
2021-01-27T07:17:48.8760633Z         if status in ErrorCode.NO_SUCH_ELEMENT:
2021-01-27T07:17:48.8761631Z             exception_class = NoSuchElementException
2021-01-27T07:17:48.8762653Z         elif status in ErrorCode.NO_SUCH_FRAME:
2021-01-27T07:17:48.8763633Z             exception_class = NoSuchFrameException
2021-01-27T07:17:48.8764604Z         elif status in ErrorCode.NO_SUCH_WINDOW:
2021-01-27T07:17:48.8768224Z             exception_class = NoSuchWindowException
2021-01-27T07:17:48.8769090Z         elif status in ErrorCode.STALE_ELEMENT_REFERENCE:
2021-01-27T07:17:48.8769999Z             exception_class = StaleElementReferenceException
2021-01-27T07:17:48.8770912Z         elif status in ErrorCode.ELEMENT_NOT_VISIBLE:
2021-01-27T07:17:48.8771749Z             exception_class = ElementNotVisibleException
2021-01-27T07:17:48.8772599Z         elif status in ErrorCode.INVALID_ELEMENT_STATE:
2021-01-27T07:17:48.8773470Z             exception_class = InvalidElementStateException
2021-01-27T07:17:48.8774330Z         elif status in ErrorCode.INVALID_SELECTOR \
2021-01-27T07:17:48.8775066Z                 or status in ErrorCode.INVALID_XPATH_SELECTOR \
2021-01-27T07:17:48.8775874Z                 or status in ErrorCode.INVALID_XPATH_SELECTOR_RETURN_TYPER:
2021-01-27T07:17:48.8776741Z             exception_class = InvalidSelectorException
2021-01-27T07:17:48.8777564Z         elif status in ErrorCode.ELEMENT_IS_NOT_SELECTABLE:
2021-01-27T07:17:48.8778639Z             exception_class = ElementNotSelectableException
2021-01-27T07:17:48.8800956Z         elif status in ErrorCode.ELEMENT_NOT_INTERACTABLE:
2021-01-27T07:17:48.8802071Z             exception_class = ElementNotInteractableException
2021-01-27T07:17:48.8802987Z         elif status in ErrorCode.INVALID_COOKIE_DOMAIN:
2021-01-27T07:17:48.8803877Z             exception_class = InvalidCookieDomainException
2021-01-27T07:17:48.8804718Z         elif status in ErrorCode.UNABLE_TO_SET_COOKIE:
2021-01-27T07:17:48.8805556Z             exception_class = UnableToSetCookieException
2021-01-27T07:17:48.8806344Z         elif status in ErrorCode.TIMEOUT:
2021-01-27T07:17:48.8806996Z             exception_class = TimeoutException
2021-01-27T07:17:48.8807783Z         elif status in ErrorCode.SCRIPT_TIMEOUT:
2021-01-27T07:17:48.8808465Z             exception_class = TimeoutException
2021-01-27T07:17:48.8809149Z         elif status in ErrorCode.UNKNOWN_ERROR:
2021-01-27T07:17:48.8809851Z             exception_class = WebDriverException
2021-01-27T07:17:48.8810618Z         elif status in ErrorCode.UNEXPECTED_ALERT_OPEN:
2021-01-27T07:17:48.8811565Z             exception_class = UnexpectedAlertPresentException
2021-01-27T07:17:48.8812447Z         elif status in ErrorCode.NO_ALERT_OPEN:
2021-01-27T07:17:48.8813185Z             exception_class = NoAlertPresentException
2021-01-27T07:17:48.8813942Z         elif status in ErrorCode.IME_NOT_AVAILABLE:
2021-01-27T07:17:48.8814722Z             exception_class = ImeNotAvailableException
2021-01-27T07:17:48.8815535Z         elif status in ErrorCode.IME_ENGINE_ACTIVATION_FAILED:
2021-01-27T07:17:48.8816414Z             exception_class = ImeActivationFailedException
2021-01-27T07:17:48.8817452Z         elif status in ErrorCode.MOVE_TARGET_OUT_OF_BOUNDS:
2021-01-27T07:17:48.8818357Z             exception_class = MoveTargetOutOfBoundsException
2021-01-27T07:17:48.8819254Z         elif status in ErrorCode.JAVASCRIPT_ERROR:
2021-01-27T07:17:48.8820133Z             exception_class = JavascriptException
2021-01-27T07:17:48.8820862Z         elif status in ErrorCode.SESSION_NOT_CREATED:
2021-01-27T07:17:48.8821688Z             exception_class = SessionNotCreatedException
2021-01-27T07:17:48.8822522Z         elif status in ErrorCode.INVALID_ARGUMENT:
2021-01-27T07:17:48.8823304Z             exception_class = InvalidArgumentException
2021-01-27T07:17:48.8824065Z         elif status in ErrorCode.NO_SUCH_COOKIE:
2021-01-27T07:17:48.8824777Z             exception_class = NoSuchCookieException
2021-01-27T07:17:48.8825559Z         elif status in ErrorCode.UNABLE_TO_CAPTURE_SCREEN:
2021-01-27T07:17:48.8826306Z             exception_class = ScreenshotException
2021-01-27T07:17:48.8827086Z         elif status in ErrorCode.ELEMENT_CLICK_INTERCEPTED:
2021-01-27T07:17:48.8828050Z             exception_class = ElementClickInterceptedException
2021-01-27T07:17:48.8829007Z         elif status in ErrorCode.INSECURE_CERTIFICATE:
2021-01-27T07:17:48.8829894Z             exception_class = InsecureCertificateException
2021-01-27T07:17:48.8830764Z         elif status in ErrorCode.INVALID_COORDINATES:
2021-01-27T07:17:48.8831626Z             exception_class = InvalidCoordinatesException
2021-01-27T07:17:48.8832455Z         elif status in ErrorCode.INVALID_SESSION_ID:
2021-01-27T07:17:48.8833271Z             exception_class = InvalidSessionIdException
2021-01-27T07:17:48.8834061Z         elif status in ErrorCode.UNKNOWN_METHOD:
2021-01-27T07:17:48.8834825Z             exception_class = UnknownMethodException
2021-01-27T07:17:48.8835415Z         else:
2021-01-27T07:17:48.8835972Z             exception_class = WebDriverException
2021-01-27T07:17:48.8836924Z         if value == '' or value is None:
2021-01-27T07:17:48.8837608Z             value = response['value']
2021-01-27T07:17:48.8838893Z         if isinstance(value, basestring):
2021-01-27T07:17:48.8839988Z             if exception_class == ErrorInResponseException:
2021-01-27T07:17:48.8840803Z                 raise exception_class(response, value)
2021-01-27T07:17:48.8841565Z             raise exception_class(value)
2021-01-27T07:17:48.8842387Z         if message == "" and 'message' in value:
2021-01-27T07:17:48.8843092Z             message = value['message']
2021-01-27T07:17:48.8843508Z     
2021-01-27T07:17:48.8843887Z         screen = None
2021-01-27T07:17:48.8844469Z         if 'screen' in value:
2021-01-27T07:17:48.8845116Z             screen = value['screen']
2021-01-27T07:17:48.8845519Z     
2021-01-27T07:17:48.8845912Z         stacktrace = None
2021-01-27T07:17:48.8846656Z         if 'stackTrace' in value and value['stackTrace']:
2021-01-27T07:17:48.8847207Z             stacktrace = []
2021-01-27T07:17:48.8847613Z             try:
2021-01-27T07:17:48.8848251Z                 for frame in value['stackTrace']:
2021-01-27T07:17:48.8849103Z                     line = self._value_or_default(frame, 'lineNumber', '')
2021-01-27T07:17:48.8850054Z                     file = self._value_or_default(frame, 'fileName', '<anonymous>')
2021-01-27T07:17:48.8850661Z                     if line:
2021-01-27T07:17:48.8851110Z                         file = "%s:%s" % (file, line)
2021-01-27T07:17:48.8851967Z                     meth = self._value_or_default(frame, 'methodName', '<anonymous>')
2021-01-27T07:17:48.8852788Z                     if 'className' in frame:
2021-01-27T07:17:48.8853535Z                         meth = "%s.%s" % (frame['className'], meth)
2021-01-27T07:17:48.8854054Z                     msg = "    at %s (%s)"
2021-01-27T07:17:48.8854495Z                     msg = msg % (meth, file)
2021-01-27T07:17:48.8855044Z                     stacktrace.append(msg)
2021-01-27T07:17:48.8855584Z             except TypeError:
2021-01-27T07:17:48.8856024Z                 pass
2021-01-27T07:17:48.8856753Z         if exception_class == ErrorInResponseException:
2021-01-27T07:17:48.8857557Z             raise exception_class(response, message)
2021-01-27T07:17:48.8858475Z         elif exception_class == UnexpectedAlertPresentException:
2021-01-27T07:17:48.8859271Z             alert_text = None
2021-01-27T07:17:48.8914817Z             if 'data' in value:
2021-01-27T07:17:48.8915552Z                 alert_text = value['data'].get('text')
2021-01-27T07:17:48.8916251Z             elif 'alert' in value:
2021-01-27T07:17:48.8916957Z                 alert_text = value['alert'].get('text')
2021-01-27T07:17:48.8917682Z             raise exception_class(message, screen, stacktrace, alert_text)
2021-01-27T07:17:48.8918469Z >       raise exception_class(message, screen, stacktrace)
2021-01-27T07:17:48.8919732Z E       selenium.common.exceptions.WebDriverException: Message: Session timed out or not found
2021-01-27T07:17:48.8920655Z 
2021-01-27T07:17:48.8921880Z /opt/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/selenium/webdriver/remote/errorhandler.py:242: WebDriverException
2021-01-27T07:17:48.8922956Z =========================== short test summary info ============================
2021-01-27T07:17:48.8924720Z FAILED test.py::test_title - selenium.common.exceptions.WebDriverException: M...
2021-01-27T07:17:48.8925813Z ============================== 1 failed in 11.65s ==============================
2021-01-27T07:17:48.9088879Z ##[error]Process completed with exit code 1.
14_Post Check out and download repository
2021-01-27T07:17:48.9204536Z Post job cleanup.
2021-01-27T07:17:49.0687586Z [command]/usr/bin/git version
2021-01-27T07:17:49.0738804Z git version 2.29.2
2021-01-27T07:17:49.0778861Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-01-27T07:17:49.0821084Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-01-27T07:17:49.1177518Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-01-27T07:17:49.1210724Z http.https://github.com/.extraheader
2021-01-27T07:17:49.1221258Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2021-01-27T07:17:49.1260683Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
15_Complete job

2021-01-27T07:17:49.1661625Z Cleaning up orphan processes

Огромное спасибо Roller Boller!!! вопрос решен исправлением скрипта Python

Скрипт Python
import time
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities

driver = webdriver.Remote(
    command_executor='http://127.0.0.1:4444/wd/hub',
    desired_capabilities=DesiredCapabilities.CHROME
)


def test_title():
    driver = webdriver.Remote(
        command_executor='http://127.0.0.1:4444/wd/hub',
        desired_capabilities=DesiredCapabilities.CHROME
    )
    driver.get('https://www.google.com/')
    assert "Google" in driver.title
    time.sleep(10)
    driver.quit()