Skip to content

Commit 873543b

Browse files
authored
Merge pull request #1205 from seleniumbase/refresh-python-dependencies
Refresh Python dependencies
2 parents b8068ca + 68112d8 commit 873543b

File tree

7 files changed

+897
-20
lines changed

7 files changed

+897
-20
lines changed

examples/capabilities/selenoid_cap_file.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Desired capabilities example file for Selenoid Grid
22
#
3-
# The same result can be achieved on the command-line with:
3+
# The same result can be achieved on the command-line. Eg:
44
# --cap-string='{"selenoid:options": {"enableVNC": true}}'
55

66
capabilities = {
7-
"screenResolution": "1280x1024x24",
7+
"acceptSslCerts": True,
8+
"acceptInsecureCerts": True,
9+
"screenResolution": "1920x1080x24",
810
"selenoid:options": {
911
"enableVNC": True,
1012
"enableVideo": False,

integrations/node_js/ReadMe.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ You can create a customized web app for running SeleniumBase tests by using Node
44

55
<img src="https://seleniumbase.io/other/node_runner.png" title="Node Runner" />
66

7-
#### 1. Install NodeJS
7+
#### 1. Install NodeJS (if not installed)
88

99
* Navigate to [https://nodejs.org/en/](https://nodejs.org/en/)
1010
* Click to download and install NodeJS
1111

12-
#### 2. Install Express for NodeJS
12+
#### 2. Upgrade NodeJS (if using an older version)
1313

1414
```bash
15-
npm install -g express
15+
npm install -g npm@latest
1616
```
1717

18-
#### 3. Install the Example Test Runner for SeleniumBase from the ``integrations/node_js`` folder
18+
#### 3. Install the Example Test Runner for SeleniumBase from the ``integrations/node_js`` folder (``npm ci`` has a speed improvement over ``npm install``.)
1919

2020
```bash
21-
npm install
21+
npm ci
2222
```
2323

2424
(You should see a ``node_modules`` folder appear in your ``node_js`` folder.)

0 commit comments

Comments
 (0)