Skip to content

Commit f602128

Browse files
authored
Merge branch 'trunk' into py-locators
2 parents 8b06743 + ef7d1c6 commit f602128

File tree

2 files changed

+60
-1
lines changed

2 files changed

+60
-1
lines changed

website_and_docs/content/blog/2022/scaling-grid-with-keda.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ triggers:
4949
metadata:
5050
url: 'http://selenium-grid-url-or-ip:4444/graphql'
5151
browserName: 'chrome'
52+
platformName: 'Linux'
5253
```
5354
5455
All of this gets saved as a Scaled-Object like so:
@@ -69,8 +70,17 @@ spec:
6970
triggers:
7071
- type: selenium-grid
7172
metadata:
72-
url: 'https://selenium-grid-url-or-ip:4444/graphql'
73+
url: 'http://selenium-grid-url-or-ip:4444/graphql'
7374
browserName: 'chrome'
75+
platformName: 'Linux'
76+
```
77+
78+
Send the request to Grid, for example in Python client:
79+
80+
```python
81+
options = ChromeOptions()
82+
options.set_capability('platformName', 'Linux')
83+
driver = webdriver.Remote(options=options, command_executor='http://selenium-grid-url-or-ip:4444/wd/hub')
7484
```
7585

7686
As an added bonus KEDA allows us to scale our deployments down to
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: "Selenium Community Live - Episode 1"
3+
linkTitle: "Selenium Community Live - Episode 1"
4+
date: 2024-12-25
5+
tags: ["webinar", "meetup", "talks","community"]
6+
categories: ["webinar"]
7+
author: <a href="https://www.linkedin.com/in/pallavimuse/" target="_blank">Pallavi Sharma</a>
8+
images:
9+
description: >
10+
Selenium Community Live - Episode 1
11+
---
12+
13+
At the eve of celebration of 20 years of Selenium, the current **<a href="https://www.selenium.dev/project/structure/#plc" target="_blank">Project Leadership Committee of Selenium</a>** decided on starting Selenium Community Live event, an idea helmed by **<a href="https://www.linkedin.com/in/maaret/" target="_blank">Maaret Pyhäjärvi</a>** .
14+
The first episode happened on Dec 18th, 2024: **<a href="https://www.youtube.com/watch?v=Y4tZOXGQGRQ" target="_blank">Selenium Community Live - Episode 1</a>**
15+
16+
**Selenium Community Live - Episode 1**
17+
18+
Collaboration, communication and community are the force behind the success of the Selenium Project in open source for last twenty years.
19+
Jason Huggins and Simon Stewart with their respective projects Selenium and WebDriver collaborated and brought together Selenium WebDriver.
20+
Eventually WebDriver became a W3C standard for browser automation, and Jim Evans and Manoj Kumar in the first episode of Selenium Community Live
21+
discuss all about Selenium, and making of the WebDriver standard. They shed light on the process and people behind building these specifications.
22+
They also spoke about various browser vendors and browser automation projects coming together to collaborate on making the next standard in browser automation
23+
WebDriver Bi-Di. The Selenium project extend thanks to both Jim and Manoj for commemorating the first episode for community.
24+
25+
**Meet the Speakers:**
26+
27+
1. **<a href="https://www.linkedin.com/in/jimevansmusic/" target="_blank">Jim Evans</a>**
28+
29+
2. **<a href="https://www.linkedin.com/in/manoj9788/" target="_blank">Manoj Kumar</a>**
30+
31+
## Watch the Recording the first Episode of Selenium Community Live
32+
33+
Couldn’t join us live? Watch the entire episode here -
34+
📹 Recording Link: [Watch the Event Recording on YouTube](https://www.youtube.com/watch?v=Y4tZOXGQGRQ)
35+
36+
The links for the various projects which were discussed in the event -
37+
38+
A few links which you may wish to explore -
39+
**<a href="https://www.w3.org/news-events/w3c-tpac/" target="_blank">TPAC</a>**
40+
41+
**<a href="https://www.w3.org/groups/wg/browser-tools-testing/" target="_blank">W3C Browser Testing Working Group</a>**
42+
43+
**<a href="https://github.com/w3c/webdriver/" target="_blank">WebDriver</a>**
44+
45+
**<a href="https://github.com/w3c/webdriver-bidi/" target="_blank">WebDriver Bi-Di</a>**
46+
47+
**<a href="https://github.com/webdriverbidi-net/webdriverbidi-net/" target="_blank">WebDriver Bi-Di .net implementation by Jim Evans </a>**
48+
49+
Stay tuned as we bring the next! **<a href="https://www.youtube.com/@SeleniumHQProject/streams" target="_blank">Subscribe here to the Selenium HQ Official YouTube Channel.</a>**

0 commit comments

Comments
 (0)