You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1027,6 +1027,31 @@ $ BUILD_ARGS="--build-arg SEL_USER=yourseluser --build-arg SEL_PASSWD=welcome" m
1027
1027
```
1028
1028
___
1029
1029
1030
+
## Upgrade browser version in the images
1031
+
1032
+
Selenium server, browser and driver are pre-installed in the image. In case you would like to remain on the same Selenium version and just upgrade the browser and its driver to the latest. You can follow below steps
1033
+
1034
+
Clone the repo and from the project directory root you can upgrade by running:
1035
+
1036
+
```bash
1037
+
$ VERSION=$EXPECTED_SELENIUM_VERSION make chrome_upgrade_version
1038
+
```
1039
+
For example: `VERSION=4.16.1 make chrome_upgrade_version`
1040
+
1041
+
The new image has tag `$VERSION_YYYYMMDD` where `YYYYMMDD` is the current date.
1042
+
1043
+
```bash
1044
+
$ VERSION=$SELENIUM_VERSION make firefox_upgrade_version
1045
+
```
1046
+
1047
+
```bash
1048
+
$ VERSION=$SELENIUM_VERSION make edge_upgrade_version
1049
+
```
1050
+
1051
+
You can refer to detail commands in the [Makefile](Makefile) file.
1052
+
1053
+
---
1054
+
1030
1055
## Waiting for the Grid to be ready
1031
1056
1032
1057
It is a good practice to check first if the Grid is up and ready to receive requests, this can be done by checking the `/wd/hub/status` endpoint.
0 commit comments