File tree Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ addons:
54
54
- supervisor
55
55
- nginx
56
56
- xvfb
57
- - chromium-browser
57
+ - firefox
58
58
- unzip
59
59
- libnss3
60
60
- libgconf-2-4
Original file line number Diff line number Diff line change 4
4
5
5
section " install.base.requirements"
6
6
7
+ # Check Firefox version
8
+ firefox --version
9
+
7
10
# Install v1.7 or newer of nginx to support 'if' statement for logging
8
11
sudo apt-add-repository -y ppa:nginx/development
9
12
sudo apt update
@@ -38,12 +41,12 @@ make db_init
38
41
section_end " init.db"
39
42
40
43
41
- section " install.chromedriver .and.selenium"
42
- wget https://chromedriver.storage.googleapis. com/2.37/chromedriver_linux64.zip
43
- sudo unzip chromedriver_linux64.zip chromedriver -d /usr/local/bin
44
- rm chromedriver_linux64.zip
45
- which chromium-browser
46
- chromium-browser --version
44
+ section " install.geckodriver .and.selenium"
45
+ wget https://github. com/mozilla/geckodriver/releases/download/v0.20.0/geckodriver-v0.20.0-linux64.tar.gz
46
+ sudo tar -xzf geckodriver-v0.20.0-linux64.tar.gz -C /usr/local/bin
47
+ rm geckodriver-v0.20.0-linux64.tar.gz
48
+ which geckodriver
49
+ geckodriver --version
47
50
pip install --upgrade selenium
48
51
python -c " import selenium; print(f'Selenium {selenium.__version__}')"
49
- section_end " install.chromedriver .and.selenium"
52
+ section_end " install.geckodriver .and.selenium"
Submodule baselayer updated
1 file Original file line number Diff line number Diff line change 21
21
22
22
upload_folder: './data/uploads'
23
23
custom_feature_script_folder: './data/uploads/custom_feature_scripts'
24
+ downloads_folder: '/tmp'
24
25
25
26
database:
26
27
database: cesium
You can’t perform that action at this time.
0 commit comments