Skip to content

Commit be212cc

Browse files
authored
Merge branch 'trunk' into renovate/mocha-11.x
2 parents 0a7a21d + aae2e0f commit be212cc

File tree

16 files changed

+30
-26
lines changed

16 files changed

+30
-26
lines changed

examples/dotnet/SeleniumDocs/BaseTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class BaseTest
1717
protected IWebDriver driver;
1818
protected Uri GridUrl;
1919
private Process _webserverProcess;
20-
private const string ServerJarName = "selenium-server-4.28.0.jar";
20+
private const string ServerJarName = "selenium-server-4.28.1.jar";
2121
private static readonly string BaseDirectory = AppContext.BaseDirectory;
2222
private const string RelativePathToGrid = "../../../../../";
2323
private readonly string _examplesDirectory = Path.GetFullPath(Path.Combine(BaseDirectory, RelativePathToGrid));

examples/java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
testImplementation 'org.seleniumhq.selenium:selenium-java:4.28.0'
13+
testImplementation 'org.seleniumhq.selenium:selenium-java:4.28.1'
1414
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.11.4'
1515
}
1616

examples/java/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

examples/java/gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

examples/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<maven.compiler.source>17</maven.compiler.source>
1414
<maven.compiler.target>17</maven.compiler.target>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<selenium.version>4.28.0</selenium.version>
16+
<selenium.version>4.28.1</selenium.version>
1717
</properties>
1818

1919
<repositories>

examples/java/src/test/java/dev/selenium/interactions/FramesTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void informationWithElements() {
4141
driver.switchTo().frame(iframe);
4242
assertEquals(true, driver.getPageSource().contains("We Leave From Here"));
4343
//Now we can type text into email field
44-
WebElement emailE= driver.findElement(By.id("email"));
44+
WebElement emailE = driver.findElement(By.id("email"));
4545
emailE.sendKeys("[email protected]");
4646
emailE.clear();
4747
driver.switchTo().defaultContent();
@@ -52,7 +52,7 @@ public void informationWithElements() {
5252
//Switch to the frame
5353
driver.switchTo().frame(iframe);
5454
assertEquals(true, driver.getPageSource().contains("We Leave From Here"));
55-
WebElement email=driver.findElement(By.id("email"));
55+
WebElement email = driver.findElement(By.id("email"));
5656
//Now we can type text into email field
5757
email.sendKeys("[email protected]");
5858
email.clear();
@@ -71,4 +71,4 @@ public void informationWithElements() {
7171
driver.quit();
7272
}
7373

74-
}
74+
}

examples/kotlin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
2121

2222
<java.version>1.8</java.version>
23-
<selenium.version>4.28.0</selenium.version>
23+
<selenium.version>4.28.1</selenium.version>
2424

2525
<maven.compiler.target>${java.version}</maven.compiler.target>
2626
<maven.compiler.source>${java.version}</maven.compiler.source>

examples/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium==4.28.0
1+
selenium==4.28.1
22
pytest==8.3.4
33
trio==0.27.0
44
pytest-trio==0.8.0

examples/python/tests/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def server_old(request):
142142
os.path.abspath(__file__)
143143
)
144144
),
145-
"selenium-server-4.28.0.jar",
145+
"selenium-server-4.28.1.jar",
146146
)
147147

148148
def wait_for_server(url, timeout):
@@ -200,7 +200,7 @@ def server():
200200
)
201201
)
202202
),
203-
"selenium-server-4.28.0.jar",
203+
"selenium-server-4.28.1.jar",
204204
)
205205

206206
args = [
@@ -273,7 +273,7 @@ def grid_server():
273273
)
274274
)
275275
),
276-
"selenium-server-4.28.0.jar",
276+
"selenium-server-4.28.1.jar",
277277
)
278278

279279
args = [

website_and_docs/content/project/structure/_index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ <h3 class="pb-3">Project Leadership Committee</h3>
2727
{{< gh-user "https://api.github.com/users/AutomatedTester" >}}
2828
{{< gh-user "https://api.github.com/users/mmerrell" >}}
2929
{{< gh-user "https://api.github.com/users/maaretp" >}}
30-
<!-- diemol is the TLC rep, starting on 30.08.2023 -->
31-
{{< gh-user "https://api.github.com/users/diemol" >}}
30+
<!-- pujagani is the TLC rep, starting on 27.01.2025 -->
31+
{{< gh-user "https://api.github.com/users/pujagani" >}}
3232
</div>
3333
</div>
3434
<div id="tlc" class="pb-4">

website_and_docs/data/sponsors.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ selenium:
2222
- logo: "/images/sponsors/applitools.png"
2323
url: "https://applitools.com/"
2424
name: "Applitools"
25-
# Sponsorship renewed October 16, 2024.
25+
# Sponsorship renewed October 16, 2024.
2626
- logo: "/images/sponsors/lambda-test.png"
2727
url: "https://www.lambdatest.com/selenium-automation?utm_source=selenium&utm_medium=open-source-sponsor&utm_campaign=nov_14&utm_term=sk&utm_content=web"
2828
name: "LambdaTest"
@@ -70,9 +70,6 @@ silver:
7070
# url: "http://www.cigniti.com/"
7171
# name: "Cigniti"
7272
# Sponsorship start date: Nov 05, 2020
73-
# - logo: "/images/sponsors/gridlastic-selenium-grid-in-the-cloud.png"
74-
# url: "https://www.gridlastic.com/?utm_source=seleniumhq&utm_campaign=seleniumhq-sponsorship&utm_medium=bannerad"
75-
# name: "GridLastic"
7673
# Sponsorship start date: Aug 04, 2021
7774
# - logo: "/images/sponsors/QaseLogo2X.png"
7875
# url: "https://qase.io/?utm_source=selenium&utm_medium=sponsorship&utm_campaign=promo"
@@ -94,6 +91,14 @@ bronze:
9491
# Set to false if no items are present
9592
enable: true
9693
item:
94+
# Sponsorship renewed date: Jan 25, 2025
95+
- logo: "/images/sponsors/gridlastic-selenium-grid-in-the-cloud.png"
96+
url: "https://www.gridlastic.com/"
97+
name: "Gridlastic"
98+
# Sponsorship start date: Jan 24, 2025
99+
- logo: "/images/sponsors/gwenify-logo.png"
100+
url: "https://www.gwenify.com/"
101+
name: "Gwenify - Robotic Process Automation"
97102
# Sponsorship start date: Aug 21, 2024
98103
- logo: "/images/sponsors/testingbot.png"
99104
url: "https://testingbot.com/"

website_and_docs/layouts/downloads/list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<div class="card-body">
2626
<p class="card-text">
2727
Latest stable version
28-
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.28.0/selenium-server-4.28.0.jar">4.28.0</a>
28+
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.28.0/selenium-server-4.28.1.jar">4.28.1</a>
2929
</p>
3030
<p class="card-text">
3131
To use the Selenium Server in a Grid configuration see the

website_and_docs/layouts/partials/announcement-banner.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ <h4 class="alert-heading text-center m-2">
1010
<a href="https://seleniumconf.com/?utm_medium=Referral&utm_source=selenium.dev&utm_campaign=register" target='_blank' aria-pressed="true"> Register now!</a>
1111
</h4>
1212
<h4 class="alert-heading text-center m-4">
13-
Join us for Selenium Community Live Episode 2 on Jan 21st, 2025 -
14-
<a href="https://www.linkedin.com/events/seleniumcommunitylive-episode27278315412075769856/" target='_blank' aria-pressed="true"> More information here</a>
13+
Join us for Selenium Community Live Episode 3 on Feb 21st, 2025 -
14+
<a href="https://www.linkedin.com/events/seleniumcommunitylive-episode37288096807144894464/" target='_blank' aria-pressed="true"> More information here</a>
1515
</h4>
1616
</div>
1717
</div>

website_and_docs/layouts/partials/selenium-clients-and-webdriver-bindings.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
8282
</p>
8383
<p class="card-text m-0 pb-1">
8484
Stable:
85-
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.28.0/selenium-java-4.28.0.zip" class="card-link">
86-
4.28.0 (January 20, 2025)
85+
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.28.0/selenium-java-4.28.1.zip" class="card-link">
86+
4.28.1 (January 23, 2025)
8787
</a>
8888
</p>
8989
<p class="card-text m-0 pb-1">
@@ -111,7 +111,7 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
111111
<p class="card-text m-0 pb-1">
112112
Stable:
113113
<a href="https://pypi.python.org/pypi/selenium" class="card-link">
114-
4.28.0 (January 20, 2024)
114+
4.28.1 (January 23, 2024)
115115
</a>
116116
</p>
117117
<p class="card-text m-0 pb-1">
Loading

0 commit comments

Comments
 (0)