Skip to content

Commit bf092aa

Browse files
authored
Merge branch 'trunk' into update_http_client_doc
2 parents 4a2438c + cbbcd54 commit bf092aa

File tree

19 files changed

+39
-24
lines changed

19 files changed

+39
-24
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Hugo
1818
uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f
1919
with:
20-
hugo-version: '0.110.0'
20+
hugo-version: ' 0.125.4'
2121
extended: true
2222
- name: Build
2323
run: chmod +x build-site.sh && ./build-site.sh

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Hugo
1818
uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f
1919
with:
20-
hugo-version: '0.110.0'
20+
hugo-version: '0.125.4'
2121
extended: true
2222
- name: Build
2323
run: chmod +x build-site.sh && ./build-site.sh

README.md

Lines changed: 1 addition & 1 deletion
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.110.0.
14+
to use Hugo 0.125.4
1515

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

examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import org.openqa.selenium.logging.LoggingPreferences;
2525
import org.openqa.selenium.remote.service.DriverFinder;
2626

27+
2728
public class ChromeTest extends BaseTest {
2829
@AfterEach
2930
public void clearProperties() {

examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import org.openqa.selenium.logging.LoggingPreferences;
2525
import org.openqa.selenium.remote.service.DriverFinder;
2626

27+
2728
public class EdgeTest extends BaseTest {
2829
@AfterEach
2930
public void clearProperties() {

examples/java/src/test/java/dev/selenium/browsers/FirefoxTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import org.openqa.selenium.firefox.GeckoDriverService;
2222
import org.openqa.selenium.remote.service.DriverFinder;
2323

24+
2425
public class FirefoxTest extends BaseTest {
2526
private FirefoxDriver driver;
2627

netlify.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ command = "chmod +x build-site.sh && ./build-site.sh"
44

55
[context.production.environment]
66
NODE_VERSION = "18.14.1"
7-
HUGO_VERSION = "0.110.0"
7+
HUGO_VERSION = "0.125.4"
88
GO_VERSION = "1.20.1"
99
HUGO_ENV = "production"
1010

@@ -13,13 +13,13 @@ command = "chmod +x build-site.sh && ./build-site.sh"
1313

1414
[context.deploy-preview.environment]
1515
NODE_VERSION = "18.14.1"
16-
HUGO_VERSION = "0.110.0"
16+
HUGO_VERSION = "0.125.4"
1717
GO_VERSION = "1.20.1"
1818

1919
[context.branch-deploy]
2020
command = "chmod +x build-site.sh && ./build-site.sh"
2121

2222
[context.branch-deploy.environment]
2323
NODE_VERSION = "18.14.1"
24-
HUGO_VERSION = "0.110.0"
24+
HUGO_VERSION = "0.125.4"
2525
GO_VERSION = "1.20.1"

website_and_docs/assets/scss/_links.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
color: $selenium-cyan-color;
99
}
1010

11-
p > a, main a {
11+
p > a, main a, div > a {
1212
color: $primary !important;
1313
border-bottom: 2px solid;
1414
transition: 0.3s;
1515
}
1616

17-
p > a:hover, main a:hover {
17+
p > a:hover, main a:hover, div > a:hover {
1818
color: $selenium-cyan-color !important;
1919
}
2020

website_and_docs/content/documentation/webdriver/drivers/options.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ it will be automatically downloaded by [Selenium Manager]({{< ref "../../seleniu
6767
{{< badge-code >}}
6868
{{< /tab >}}
6969
{{< tab header="Ruby" >}}
70-
{{< gh-codeblock path="examples/ruby/spec/drivers/service_spec.rb#L40" >}}
70+
{{< gh-codeblock path="examples/ruby/spec/drivers/options_spec.rb#L40" >}}
7171
{{< /tab >}}
7272
{{< tab header="JavaScript" >}}
7373
{{< badge-code >}}

website_and_docs/content/documentation/webdriver/drivers/options.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ it will be automatically downloaded by [Selenium Manager]({{< ref "../../seleniu
6868
{{< badge-code >}}
6969
{{< /tab >}}
7070
{{< tab header="Ruby" >}}
71-
{{< gh-codeblock path="examples/ruby/spec/drivers/service_spec.rb#L40" >}}
71+
{{< gh-codeblock path="examples/ruby/spec/drivers/options_spec.rb#L40" >}}
7272
{{< /tab >}}
7373
{{< tab header="JavaScript" >}}
7474
{{< badge-code >}}

0 commit comments

Comments
 (0)