Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions dotnet/src/webdriver/Internal/Base64UrlEncoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,13 @@

using System;

#nullable enable

namespace OpenQA.Selenium.Internal
{
// When we target .NET 9+, we can use the built-in Base64Url type
// https://github.com/SeleniumHQ/selenium/issues/14813

/// <summary>
/// Encodes and Decodes strings as Base64Url encoding.
/// </summary>
Expand Down