Skip to content

Commit faea991

Browse files
authored
Selenium Grid: Add trigger param for Node enables managed downloads capability (#1542)
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 60af477 commit faea991

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

content/docs/2.17/scalers/selenium-grid-scaler.md

+65
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ triggers:
3939
- `activationThreshold` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)
4040
- `platformName` - Name of the browser platform. Refer to the [Selenium Grid's](https://www.selenium.dev/documentation/en/getting_started_with_webdriver/browsers/) and [WebdriverIO's](https://webdriver.io/docs/options/#capabilities) documentation for more info. (Optional)
4141
- `nodeMaxSessions` - Number of maximum sessions that can run in parallel on a Node. Update this parameter align with node config `--max-sessions` (`SE_NODE_MAX_SESSIONS`) to have the correct scaling behavior. (Default: `1`, Optional).
42+
- `enableManagedDownloads`- Set this for Node enabled to auto manage files downloaded for a given session on the Node. When the client requests enabling this feature, it can only be assigned to the Node that also enabled it. Otherwise, the request will wait until it timed out. (Default: `false`, Optional).
4243
- `capabilities` - Add more custom capabilities for matching specific Nodes. It should be in JSON string, see [example](https://www.selenium.dev/documentation/grid/configuration/toml_options/#setting-custom-capabilities-for-matching-specific-nodes) (Optional)
4344

4445
**Trigger Authentication**
@@ -224,6 +225,70 @@ options.set_capability('browserVersion', '131.0')
224225
driver = webdriver.Remote(options=options, command_executor=SELENIUM_GRID_URL)
225226
```
226227

228+
#### Selenium Grid scaler trigger metadata with Node `enableManagedDownloads`
229+
230+
In image `selenium/node-chrome`, the environment variable `SE_NODE_ENABLE_MANAGED_DOWNLOADS` is used to append the `--enable-managed-downloads` CLI option to the Node. This option is used to enable the Node to auto manage files downloaded for a given session on the Node. The request with enabling this feature can only be assigned to the Node also enabled it, otherwise the request will be waited until request timed out.
231+
232+
```yaml
233+
kind: Deployment
234+
metadata:
235+
name: selenium-node-chrome
236+
labels:
237+
deploymentName: selenium-node-chrome
238+
spec:
239+
replicas: 1
240+
template:
241+
spec:
242+
containers:
243+
- name: selenium-node-chrome
244+
image: selenium/node-chrome:132.0
245+
ports:
246+
- containerPort: 5555
247+
env:
248+
- name: SE_NODE_BROWSER_VERSION
249+
value: '132.0'
250+
- name: SE_NODE_PLATFORM_NAME
251+
value: 'Linux'
252+
# https://www.selenium.dev/documentation/grid/configuration/cli_options/#node
253+
- name: SE_NODE_ENABLE_MANAGED_DOWNLOADS
254+
value: "true"
255+
256+
---
257+
258+
apiVersion: keda.sh/v1alpha1
259+
kind: ScaledObject
260+
metadata:
261+
name: selenium-grid-scaledobject-chrome-132
262+
namespace: keda
263+
labels:
264+
deploymentName: selenium-node-chrome-132
265+
spec:
266+
maxReplicaCount: 8
267+
scaleTargetRef:
268+
name: selenium-node-chrome-132
269+
triggers:
270+
- type: selenium-grid
271+
metadata:
272+
url: 'http://selenium-hub:4444/graphql'
273+
browserName: 'chrome'
274+
platformName: 'Linux'
275+
browserVersion: '132.0'
276+
unsafeSsl: 'true'
277+
# Scaler trigger param configuration should be aligned with Node stereotype.
278+
enableManagedDownloads: "true"
279+
```
280+
281+
The request to trigger this scaler should be
282+
283+
```python
284+
options = ChromeOptions()
285+
options.set_capability('platformName', 'Linux')
286+
options.set_capability('browserVersion', '132.0')
287+
# https://www.selenium.dev/documentation/webdriver/drivers/remote_webdriver/#enable-downloads-in-the-grid
288+
options.enable_downloads = True
289+
driver = webdriver.Remote(options=options, command_executor=SELENIUM_GRID_URL)
290+
```
291+
227292
---
228293
#### Selenium Grid scaler trigger metadata with extra `capabilities`
229294

0 commit comments

Comments
 (0)