Skip to content

Commit a0a2205

Browse files
authored
Merge branch 'trunk' into pinned-browser-updates
2 parents a81d6c5 + ec3be09 commit a0a2205

File tree

112 files changed

+682
-991
lines changed

Some content is hidden

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

112 files changed

+682
-991
lines changed

dotnet/test/common/AlertsTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ public void ShouldNotHandleAlertInAnotherWindow()
420420
IWebElement el = driver.FindElement(By.Id("open-new-window"));
421421
WaitFor<IAlert>(AlertToBePresent, TimeSpan.FromSeconds(5), "No alert found");
422422
},
423-
Throws.TypeOf<WebDriverException>());
423+
Throws.InstanceOf<WebDriverException>());
424424

425425
}
426426
finally

dotnet/test/common/BiDi/Browser/BrowserTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
namespace OpenQA.Selenium.BiDi.Browser;
2525

26-
class BrowserTest : BiDiTestFixture
26+
internal class BrowserTest : BiDiTestFixture
2727
{
2828
[Test]
2929
public async Task CanCreateUserContext()

dotnet/test/common/BiDi/BrowsingContext/BrowsingContextEventsTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
namespace OpenQA.Selenium.BiDi.BrowsingContext;
2525

26-
class BrowsingContextEventsTest : BiDiTestFixture
26+
internal class BrowsingContextEventsTest : BiDiTestFixture
2727
{
2828
[Test]
2929
[IgnoreBrowser(Selenium.Browser.Firefox, "Not supported yet?")]

dotnet/test/common/BiDi/BrowsingContext/BrowsingContextTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
namespace OpenQA.Selenium.BiDi.BrowsingContext;
2525

26-
class BrowsingContextTest : BiDiTestFixture
26+
internal class BrowsingContextTest : BiDiTestFixture
2727
{
2828
[Test]
2929
public async Task CanCreateNewTab()

dotnet/test/common/BiDi/Emulation/EmulationTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
namespace OpenQA.Selenium.BiDi.Emulation;
2323

24-
class EmulationTest : BiDiTestFixture
24+
internal class EmulationTest : BiDiTestFixture
2525
{
2626
[Test]
2727
[IgnoreBrowser(Selenium.Browser.Firefox, "Not supported yet?")]

dotnet/test/common/BiDi/Input/CombinedInputActionsTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
namespace OpenQA.Selenium.BiDi.Input;
2525

26-
class CombinedInputActionsTest : BiDiTestFixture
26+
internal class CombinedInputActionsTest : BiDiTestFixture
2727
{
2828
//[Test]
2929
public async Task Paint()

dotnet/test/common/BiDi/Input/SetFilesTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424

2525
namespace OpenQA.Selenium.BiDi.Input;
2626

27-
class SetFilesTest : BiDiTestFixture
27+
internal class SetFilesTest : BiDiTestFixture
2828
{
29-
string _tempFile;
29+
private string _tempFile;
3030

3131
[SetUp]
3232
public void SetUp()

dotnet/test/common/BiDi/Log/LogTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
namespace OpenQA.Selenium.BiDi.Log;
2525

26-
class LogTest : BiDiTestFixture
26+
internal class LogTest : BiDiTestFixture
2727
{
2828
[Test]
2929
public async Task CanListenToConsoleLog()

dotnet/test/common/BiDi/Network/NetworkEventsTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
namespace OpenQA.Selenium.BiDi.Network;
2626

27-
class NetworkEventsTest : BiDiTestFixture
27+
internal class NetworkEventsTest : BiDiTestFixture
2828
{
2929
[Test]
3030
public async Task CanListenToBeforeRequestSentEvent()

dotnet/test/common/BiDi/Network/NetworkTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
namespace OpenQA.Selenium.BiDi.Network;
2626

27-
class NetworkTest : BiDiTestFixture
27+
internal class NetworkTest : BiDiTestFixture
2828
{
2929
[Test]
3030
public async Task CanAddDataCollector()

0 commit comments

Comments
 (0)