sefiutils 1.0.34 → 1.0.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -3
package/README.md CHANGED
@@ -51,7 +51,7 @@ Depending on the environment variable `BROWSER` either a browser is started or a
51
51
  selenium server is started. The following values are supported:
52
52
 
53
53
  - `remote`: A selenium server is started. This requires Java as well! By default, selenium server 4.1.16 is used, but this can be changed via environment variable `SELENIUM_SERVER_VERSION`. The jar file is automatically downloaded to `.cache` if not already present.
54
- - `chrome`: A Chrome browser is started.
54
+ - `chrome`: A Chrome browser is started. This requires chromedriver (and @types/chromediver) to be installed.
55
55
  - `firefox`: A Firefox browser is started.
56
56
 
57
57
  In your tests, add the following lines (or similar) to setup and teardown the driver and load the page:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sefiutils",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "Utilities (and Jest tests) for Selenium Webdriver Tests and some React tools as well",
5
5
  "author": "Jens von Pilgrim <jens.vonpilgrim@bht-berlin.de>",
6
6
  "license": "EPL-2.0",
@@ -20,12 +20,10 @@
20
20
  "prepack": "npm run build"
21
21
  },
22
22
  "dependencies": {
23
- "chromedriver": "^110.0.0",
24
23
  "geckodriver": "^4.3.0",
25
24
  "selenium-webdriver": "^4.10.0"
26
25
  },
27
26
  "devDependencies": {
28
- "@types/chromedriver": "^81.0.1",
29
27
  "@types/jest": "^29.5.3",
30
28
  "@types/node": "^20.4.1",
31
29
  "@types/selenium-webdriver": "^4.1.15",