From a8360107987a1f201fc3a106f8fb9ece755ca163 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andre=CC=81=20Rivet?= Date: Thu, 17 Dec 2020 16:12:19 -0500 Subject: [PATCH 1/4] goog:loggingPrefs --- dash/testing/browser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dash/testing/browser.py b/dash/testing/browser.py index e498617303..4a09d2a19b 100644 --- a/dash/testing/browser.py +++ b/dash/testing/browser.py @@ -431,6 +431,7 @@ def _get_chrome(self): capabilities = DesiredCapabilities.CHROME capabilities["loggingPrefs"] = {"browser": "SEVERE"} + capabilities["goog:loggingPrefs"] = {"browser": "SEVERE"} if "DASH_TEST_CHROMEPATH" in os.environ: options.binary_location = os.environ["DASH_TEST_CHROMEPATH"] From 40f1b9a32a020a27a7f2dcbe1d542fe4f84fbd06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andre=CC=81=20Rivet?= Date: Thu, 17 Dec 2020 16:16:21 -0500 Subject: [PATCH 2/4] bump CI images --- .circleci/config.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 072b75ed35..63e3db2308 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,7 +13,7 @@ jobs: artifacts: docker: - - image: circleci/python:3.7.6-stretch-node-browsers + - image: circleci/python:3.7.9-stretch-node-browsers auth: username: dashautomation password: $DASH_PAT_DOCKERHUB @@ -33,7 +33,7 @@ jobs: lint-unit-37: &lint-unit working_directory: ~/dash docker: - - image: circleci/python:3.7.6-stretch-node-browsers + - image: circleci/python:3.7.9-stretch-node-browsers auth: username: dashautomation password: $DASH_PAT_DOCKERHUB @@ -73,7 +73,7 @@ jobs: lint-unit-36: <<: *lint-unit docker: - - image: circleci/python:3.6.9-stretch-node-browsers + - image: circleci/python:3.6.12-stretch-node-browsers auth: username: dashautomation password: $DASH_PAT_DOCKERHUB @@ -95,7 +95,7 @@ jobs: build-core-37: &build-core working_directory: ~/dash docker: - - image: circleci/python:3.7.6-stretch-node-browsers + - image: circleci/python:3.7.9-stretch-node-browsers auth: username: dashautomation password: $DASH_PAT_DOCKERHUB @@ -133,7 +133,7 @@ jobs: build-core-36: <<: *build-core docker: - - image: circleci/python:3.6.9-stretch-node-browsers + - image: circleci/python:3.6.12-stretch-node-browsers auth: username: dashautomation password: $DASH_PAT_DOCKERHUB @@ -153,7 +153,7 @@ jobs: build-misc-37: &build-misc working_directory: ~/dash docker: - - image: circleci/python:3.7.6-stretch-node-browsers + - image: circleci/python:3.7.9-stretch-node-browsers auth: username: dashautomation password: $DASH_PAT_DOCKERHUB @@ -192,7 +192,7 @@ jobs: build-misc-36: <<: *build-misc docker: - - image: circleci/python:3.6.9-stretch-node-browsers + - image: circleci/python:3.6.12-stretch-node-browsers auth: username: dashautomation password: $DASH_PAT_DOCKERHUB @@ -341,7 +341,7 @@ jobs: test-37: &test working_directory: ~/dash docker: - - image: circleci/python:3.7.6-stretch-node-browsers + - image: circleci/python:3.7.9-stretch-node-browsers auth: username: dashautomation password: $DASH_PAT_DOCKERHUB @@ -386,7 +386,7 @@ jobs: test-36: <<: *test docker: - - image: circleci/python:3.6.9-stretch-node-browsers + - image: circleci/python:3.6.12-stretch-node-browsers auth: username: dashautomation password: $DASH_PAT_DOCKERHUB From 3f3abbd4c4f96b98e90fcedc8741aa3dd2de4cae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andre=CC=81=20Rivet?= Date: Thu, 17 Dec 2020 16:38:01 -0500 Subject: [PATCH 3/4] trigger build From c69b2eb6f4e7ded43db3f1b099b03a7c219bf4bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andre=CC=81=20Rivet?= Date: Thu, 17 Dec 2020 16:43:26 -0500 Subject: [PATCH 4/4] browser behavior change rdif001 --- tests/integration/renderer/test_iframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/renderer/test_iframe.py b/tests/integration/renderer/test_iframe.py index 9cabc9a13b..189209f4a1 100644 --- a/tests/integration/renderer/test_iframe.py +++ b/tests/integration/renderer/test_iframe.py @@ -57,4 +57,4 @@ def apply_cors(response): dash_duo.wait_for_element_by_id("btn").click() dash_duo.wait_for_element("#output-0").text == "0=1" - assert len(dash_duo.get_logs()) != 0 + assert dash_duo.get_logs() == []