We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38aa2b0 commit 23b7a51Copy full SHA for 23b7a51
2 files changed
conda/base.yaml
@@ -7,6 +7,8 @@ dependencies:
7
- awscli
8
- docker-compose
9
- git
10
+ - travis
11
+ - chrome
12
- make
13
- sqlite
14
- webdriver-manager
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
@@ -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()
15
cls.driver = webdriver.Chrome()
16
cls.driver.get("http://localhost:8088")
17
0 commit comments