Skip to content

Commit 396fd8c

Browse files
remove imports
1 parent 21e2f82 commit 396fd8c

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

l10n_CM/Unified/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ def get_html_files(live_site, region):
4242

4343
@pytest.fixture()
4444
def region():
45-
return os.environ.get("FX_REGION", "FR")
45+
return os.environ.get("FX_REGION", "US")
4646

4747

4848
@pytest.fixture()
4949
def live_site():
50-
return os.environ.get("CM_SITE", "fnac")
50+
return os.environ.get("CM_SITE", "demo")
5151

5252

5353
@pytest.fixture()

modules/browser_object_autofill_popup.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import logging
2-
from time import sleep
31
from typing import Union
42

53
from selenium.webdriver.remote.webelement import WebElement
@@ -49,9 +47,6 @@ def ensure_autofill_dropdown_visible(self, field_element: WebElement = None):
4947
"""
5048
self.element_exists("pop-up-component")
5149
popup_component = self.get_element("pop-up-component")
52-
logging.warning(
53-
f"Parent pop up component: {len(popup_component.get_attribute('innerHTML')) > 1}"
54-
)
5550
if popup_component:
5651
self.element_visible("select-form-option")
5752
return self

0 commit comments

Comments
 (0)