Charles

Results 3 issues of Charles

I am running headless chrome with the following setups: "tupleSize": 25 java -Dwebdriver.chrome.driver=./chromedriver.exe -jar ../selenium.jar -role node -maxSession 25 -port 6001 -host localhost -hub http://localhost:4444/grid/register -browser browserName=chrome,version=91,platform=WINDOWS,maxInstances=25 --debug What I...

I am running some video streaming tests and I noticed some disconnections and re-connection attempts happening, especially at high load. I cannot figure out where these re-connections are coming from....

``` import pytest @pytest.mark.hookwrapper def pytest_runtest_makereport(item, call): pytest_html = item.config.pluginmanager.getplugin('html') outcome = yield report = outcome.get_result() extra = getattr(report, 'extra', []) extra.append(pytest_html.extras.html('Print something')) report.extra = extra ``` In the report,...