Skip to content

Commit

Permalink
remove selenium-related changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodlz committed Dec 19, 2023
1 parent c24ff11 commit b625a56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
fi
sudo tar -xzf ${CACHED_DOWNLOAD_DIR}/geckodriver-v${GECKO_VER}-linux64.tar.gz -C /usr/local/bin
geckodriver --version
pip install selenium==4.8.3
pip install --upgrade selenium
python -c "import selenium; print(f'Selenium {selenium.__version__}')"
- name: Write configuration & build DB
Expand Down
2 changes: 1 addition & 1 deletion app/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def click_css(self, css, timeout=10, scroll_parent=False):
def driver(request):
from selenium import webdriver

options = webdriver.FirefoxOptions()
options = webdriver.firefox.options.Options()
if "BASELAYER_TEST_HEADLESS" in os.environ:
options.headless = True
options.set_preference("devtools.console.stdout.content", True)
Expand Down

0 comments on commit b625a56

Please sign in to comment.