Skip to content

Commit 3240e41

Browse files
authored
Merge branch 'trunk' into elementNotVisibleException
2 parents 1f2e742 + 42cd60b commit 3240e41

File tree

66 files changed

+587
-630
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+587
-630
lines changed

.github/workflows/link-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Link check
4444
continue-on-error: true # <- If set to false, run fails with broken links
45-
uses: untitaker/[email protected].32
45+
uses: untitaker/[email protected].43
4646
with:
4747
args: website_and_docs/public/ --check-anchors
4848

CONTRIBUTING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# Contributing to the Selenium site and docs
22

3-
Please follow this [link](https://selenium.dev/documentation/about/contributing/)
4-
for all the contribution details.
3+
Please follow this [link](https://selenium.dev/documentation/about/contributing/) for all the contribution details.

GOVERNANCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Governance
22

3-
Content moved to https://www.selenium.dev/governance/
3+
Content moved to <https://www.selenium.dev/governance/>

README.md

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This is the repository used to build and publish the official Selenium [website]
1111
We use [Hugo](https://gohugo.io/) and the [Docsy theme](https://www.docsy.dev/)
1212
to build and render the site. You will need the **extended**
1313
Sass/SCSS version of the Hugo binary to work on this site. We recommend
14-
to use Hugo 0.125.4
14+
to use **[Hugo 0.125.4](https://github.com/gohugoio/hugo/releases/tag/v0.125.4)**
1515

1616
Steps needed to have this working locally and work on it:
1717

@@ -25,31 +25,26 @@ A full contribution guideline can be seen at [contributing](https://selenium.dev
2525

2626
## How to get involved?
2727

28-
Please check all the information available at https://selenium.dev/getinvolved/
28+
Please check all the information available at <https://selenium.dev/getinvolved/>
2929

30-
### Do not want to clone the repository to contribute? Use GitPod.
30+
### Do not want to clone the repository to contribute? Use GitPod
3131

3232
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/SeleniumHQ/seleniumhq.github.io)
3333

34-
3534
## For Selenium Site and Documentation maintainers
3635

3736
### How does the site and docs get build?
3837

3938
GitHub actions runs for every commit on each PR and protected branch. The regular CI execution will
4039
build the site with Hugo to verify that the commit works. The description of these steps can be seen
41-
at the actions configuration file, [one for testing a PR](./.github/workflows/test.yml), and
42-
[one for deploying the site](./.github/workflows/deploy.yml)
40+
at the actions configuration file, [one for testing a PR](./.github/workflows/test.yml), and [one for deploying the site](./.github/workflows/deploy.yml)
4341

4442
### How are the site and docs deployed?
4543

46-
After each CI execution that happens in the `trunk` branch, the script [build-site.sh](./build-site.sh)
47-
is executed for deployment. This script checks for the string `[deploy site]` in the commit message.
44+
After each CI execution that happens in the `trunk` branch, the script [build-site.sh](./build-site.sh) is executed for deployment. This script checks for the string `[deploy site]` in the commit message.
4845

49-
If the commit message contains that string, and the commit is in `trunk`, a
50-
[GitHub action](./.github/workflows/deploy.yml) is triggered to build and deploy the site.
51-
The site and docs will be built, and the changes will be committed to the branch `publish`
52-
by the user [Selenium-CI](https://github.com/selenium-ci/).
46+
If the commit message contains that string, and the commit is in `trunk`, a [GitHub action](./.github/workflows/deploy.yml) is triggered to build and deploy the site.
47+
The site and docs will be built, and the changes will be committed to the branch `publish` by the user [Selenium-CI](https://github.com/selenium-ci/).
5348

5449
*What is important to take into account is that the source files for the site are in the `trunk`
5550
branch, and the files that get deployed are pushed to the `publish` branch.*
@@ -59,11 +54,9 @@ repo [settings](https://github.com/SeleniumHQ/seleniumhq.github.io/settings) (if
5954
you should be able to access the link).
6055

6156
The selenium.
62-
domain is managed at https://www.gandi.net/en, if you need access to it, reach out to
63-
any of the [PLC](https://www.selenium.dev/project/structure/#plc) or [TLC](https://www.selenium.dev/project/structure/#tlc)
57+
domain is managed at <https://www.gandi.net/en>, if you need access to it, reach out to any of the [PLC](https://www.selenium.dev/project/structure/#plc) or [TLC](https://www.selenium.dev/project/structure/#tlc)
6458
members, who can help you with that.
6559

6660
If for any reason, you need to setup the domain redirection again,
6761
we followed this [guide](http://spector.io/how-to-set-up-github-pages-with-a-custom-domain-on-gandi/),
68-
but any tutorial/guide showing how to redirect a domain to GitHub pages should do.
69-
62+
but any tutorial/guide showing how to redirect a domain to GitHub pages should do.

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.25.0.jar";
20+
private const string ServerJarName = "selenium-server-4.26.0.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/dotnet/SeleniumDocs/BiDi/CDP/NetworkTest.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
using OpenQA.Selenium;
55
using OpenQA.Selenium.DevTools;
66
using System.Linq;
7-
using OpenQA.Selenium.DevTools.V129.Network;
8-
using OpenQA.Selenium.DevTools.V129.Performance;
7+
using OpenQA.Selenium.DevTools.V130.Network;
8+
using OpenQA.Selenium.DevTools.V130.Performance;
99

1010

1111
namespace SeleniumDocs.BiDi.CDP
@@ -16,7 +16,7 @@ public class NetworkTest : BaseTest
1616
[TestInitialize]
1717
public void Startup()
1818
{
19-
StartDriver("129");
19+
StartDriver("130");
2020
}
2121

2222
[TestMethod]
@@ -109,9 +109,9 @@ public async Task PerformanceMetrics()
109109
driver.Url = "https://www.selenium.dev/selenium/web/frameset.html";
110110

111111
var session = ((IDevTools)driver).GetDevToolsSession();
112-
var domains = session.GetVersionSpecificDomains<OpenQA.Selenium.DevTools.V129.DevToolsSessionDomains>();
112+
var domains = session.GetVersionSpecificDomains<OpenQA.Selenium.DevTools.V130.DevToolsSessionDomains>();
113113

114-
await domains.Performance.Enable(new OpenQA.Selenium.DevTools.V129.Performance.EnableCommandSettings());
114+
await domains.Performance.Enable(new OpenQA.Selenium.DevTools.V13.Performance.EnableCommandSettings());
115115
var metricsResponse =
116116
await session.SendCommand<GetMetricsCommandSettings, GetMetricsCommandResponse>(
117117
new GetMetricsCommandSettings()
@@ -130,8 +130,8 @@ await session.SendCommand<GetMetricsCommandSettings, GetMetricsCommandResponse>(
130130
public async Task SetCookie()
131131
{
132132
var session = ((IDevTools)driver).GetDevToolsSession();
133-
var domains = session.GetVersionSpecificDomains<OpenQA.Selenium.DevTools.V129.DevToolsSessionDomains>();
134-
await domains.Network.Enable(new OpenQA.Selenium.DevTools.V129.Network.EnableCommandSettings());
133+
var domains = session.GetVersionSpecificDomains<OpenQA.Selenium.DevTools.V130.DevToolsSessionDomains>();
134+
await domains.Network.Enable(new OpenQA.Selenium.DevTools.V130.Network.EnableCommandSettings());
135135

136136
var cookieCommandSettings = new SetCookieCommandSettings
137137
{

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.25.0'
13+
testImplementation 'org.seleniumhq.selenium:selenium-java:4.26.0'
1414
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
1515
}
1616

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>11</maven.compiler.source>
1414
<maven.compiler.target>11</maven.compiler.target>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<selenium.version>4.25.0</selenium.version>
16+
<selenium.version>4.26.0</selenium.version>
1717
</properties>
1818

1919
<repositories>

examples/javascript/package-lock.json

Lines changed: 24 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/javascript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"license": "Apache-2.0",
99
"dependencies": {
1010
"assert": "2.1.0",
11-
"selenium-webdriver": "4.25.0"
11+
"selenium-webdriver": "4.26.0"
1212
},
1313
"devDependencies": {
14-
"mocha": "10.7.3"
14+
"mocha": "10.8.2"
1515
}
1616
}

0 commit comments

Comments
 (0)