Skip to content

Commit dacbee0

Browse files
committed
Fixing assertion
1 parent 7b56da6 commit dacbee0

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

examples/dotnet/SeleniumDocs/Browsers/FirefoxTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public void LogsToConsole()
7979
var service = FirefoxDriverService.CreateDefaultService();
8080
driver = new FirefoxDriver(service);
8181
Assert.IsTrue(testLogHandler.Events.Count >= 1);
82-
Assert.IsTrue(testLogHandler.Events.Any(e => e.Message.Contains("geckodriver INFO")));
82+
Assert.IsTrue(testLogHandler.Events.Any(e => e.Message.Contains("geckodriver")));
8383
}
8484
finally
8585
{

website_and_docs/hugo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ plausible_analytics = true
164164
prism_syntax_highlighting = true
165165

166166
# Enable announcement banner below navbar (Go to announcement-banner.html to change the message)
167-
banner_flag = false
168-
announcement_banner = false
167+
banner_flag = true
168+
announcement_banner = true
169169

170170
# Enable Algolia DocSearch
171171
[params.search.algolia]

website_and_docs/layouts/partials/announcement-banner.html

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,17 @@
55
<div class="container g-0" style="padding: 10px;">
66
<div class="row g-0 justify-content-center">
77
<div class="alert alert-{{ $color }} col-12 fade show mb-0 p-0 -bg-{{ $color }}" role="alert">
8-
<!--Use this section to add announcement to the website. Ensure to switch flag off and on depending on whether announcement is to be show. TOML file-->
8+
<!--Use this section to add announcement to the website. Ensure to switch flag off and on
9+
depending on whether announcement is to be shown. TOML file-->
910
<h4 class="alert-heading text-center m-2">
10-
<!--Sample Annoucement -Tune in for the Selenium Community Live scheduled for July 30th, 2025. -->
11-
<!--Add link -<a href="https://www.linkedin.com/events/seleniumcommunitylive-episode87345785775592042497/theater/" target='_blank' aria-pressed="true">Join us!</a> -->
11+
<!--Sample Announcement -Tune in for the Selenium Community Live scheduled for July 30th, 2025. -->
12+
<!--Add link -<a href="https://www.linkedin.com/events/seleniumcommunitylive-episode87345785775592042497/theater/"
13+
target='_blank' aria-pressed="true">Join us!</a> -->
14+
SeleniumConf & AppiumConf 2026 CFP is now open!
15+
<a href="https://seleniumconf.com/submit-a-talk/" target="_blank" aria-pressed="true">
16+
Submit your talk proposals by October 19.
17+
</a>
18+
1219
</h4>
1320
</div>
1421
</div>

0 commit comments

Comments
 (0)