Skip to content

Commit b1d42f0

Browse files
committed
Initial commit
0 parents  commit b1d42f0

File tree

20 files changed

+1909
-0
lines changed

20 files changed

+1909
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Copyright 2025 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: MacOS Selenium Mocha.js
16+
17+
on:
18+
push:
19+
paths:
20+
- 'macos-selenium-mochajs/**'
21+
- '.github/workflows/macos-selenium-mochajs.yml'
22+
pull_request:
23+
paths:
24+
- 'macos-selenium-mochajs/**'
25+
- '.github/workflows/macos-selenium-mochajs.yml'
26+
27+
defaults:
28+
run:
29+
working-directory: macos-selenium-mochajs
30+
31+
jobs:
32+
test:
33+
runs-on: macos-latest
34+
35+
steps:
36+
- uses: actions/checkout@v3
37+
38+
- name: Set up Node.js
39+
uses: actions/setup-node@v3
40+
with:
41+
node-version: 'latest'
42+
43+
- name: Install dependencies
44+
working-directory: macos-selenium-mochajs
45+
run: npm install
46+
47+
- name: Run tests
48+
working-directory: macos-selenium-mochajs
49+
run: npm test
50+
51+
- name: Dump log
52+
if: always()
53+
run: cat chromedriver.log
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Copyright 2025 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: Ubuntu Selenium Java
16+
17+
on:
18+
push:
19+
paths:
20+
- 'ubuntu-selenium-java/**'
21+
- '.github/workflows/ubuntu-selenium-java.yml'
22+
pull_request:
23+
paths:
24+
- 'ubuntu-selenium-java/**'
25+
- '.github/workflows/ubuntu-selenium-java.yml'
26+
27+
defaults:
28+
run:
29+
working-directory: ubuntu-selenium-java
30+
31+
jobs:
32+
test:
33+
runs-on: ubuntu-latest
34+
35+
steps:
36+
- uses: actions/checkout@v3
37+
38+
- name: Set up JDK 11
39+
uses: actions/setup-java@v3
40+
with:
41+
java-version: '11'
42+
distribution: 'temurin'
43+
44+
- name: Run tests
45+
run: mvn test
46+
47+
- name: Dump log
48+
if: always()
49+
run: cat chromedriver.log
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Copyright 2025 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: Ubuntu Selenium Ruby
16+
17+
on:
18+
push:
19+
paths:
20+
- 'ubuntu-selenium-ruby/**'
21+
- '.github/workflows/ubuntu-selenium-ruby.yml'
22+
pull_request:
23+
paths:
24+
- 'ubuntu-selenium-ruby/**'
25+
- '.github/workflows/ubuntu-selenium-ruby.yml'
26+
27+
defaults:
28+
run:
29+
working-directory: ubuntu-selenium-ruby
30+
31+
jobs:
32+
test:
33+
runs-on: ubuntu-latest
34+
35+
steps:
36+
- uses: actions/checkout@v3
37+
38+
- name: Set up Ruby
39+
uses: ruby/setup-ruby@v1
40+
with:
41+
ruby-version: 3.2
42+
43+
- name: Install dependencies
44+
run: bundle install
45+
46+
- name: Run tests
47+
run: bundle exec rspec regression_spec.rb
48+
49+
- name: Dump log
50+
if: always()
51+
run: cat chromedriver.log
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Copyright 2025 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: Windows Selenium C#.NET
16+
17+
on:
18+
push:
19+
paths:
20+
- 'windows-selenium-csharp/**'
21+
- '.github/workflows/windows-selenium-csharp.yml'
22+
pull_request:
23+
paths:
24+
- 'windows-selenium-csharp/**'
25+
- '.github/workflows/windows-selenium-csharp.yml'
26+
27+
defaults:
28+
run:
29+
working-directory: windows-selenium-csharp
30+
31+
32+
jobs:
33+
test:
34+
runs-on: windows-latest
35+
36+
steps:
37+
- uses: actions/checkout@v4
38+
39+
- name: Set up .NET
40+
uses: actions/setup-dotnet@v4
41+
with:
42+
dotnet-version: '8.0.x'
43+
44+
- name: Install dependencies
45+
run: dotnet restore
46+
47+
- name: Run tests
48+
run: dotnet test --no-restore --logger:"console;verbosity=detailed"
49+
50+
- name: Dump log
51+
if: always()
52+
run: cat d:\\chromedriver.log

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

0 commit comments

Comments
 (0)