We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38aa2b0 commit 0f6718fCopy full SHA for 0f6718f
2 files changed
conda/base.yaml
@@ -10,6 +10,7 @@ dependencies:
10
- make
11
- sqlite
12
- webdriver-manager
13
+ - python-chromedriver-binary
14
- pip
15
- pip:
16
- epigraphhub
tests/test_webapp.py
@@ -1,7 +1,6 @@
1
from selenium import webdriver
2
from selenium.webdriver.common.by import By
3
from selenium.webdriver.chrome.options import Options
4
-from webdriver_manager.chrome import ChromeDriverManager
5
import unittest
6
7
@@ -11,7 +10,6 @@ def setUpClass(cls):
chrome_options = Options()
chrome_options.add_argument("--disable-gpu")
chrome_options.add_argument("--headless")
- chrome_options.binary_location = ChromeDriverManager().install()
cls.driver = webdriver.Chrome()
cls.driver.get("http://localhost:8088")
17
0 commit comments