Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import static org.assertj.core.api.Assertions.assertThat;
import static org.openqa.selenium.bidi.emulation.SetNetworkConditionsParameters.offline;
import static org.openqa.selenium.bidi.emulation.SetNetworkConditionsParameters.online;
import static org.openqa.selenium.testing.drivers.Browser.FIREFOX;

import java.util.List;
import java.util.Optional;
Expand All @@ -35,7 +34,6 @@
import org.openqa.selenium.bidi.script.EvaluateResultSuccess;
import org.openqa.selenium.testing.JupiterTestBase;
import org.openqa.selenium.testing.NeedsFreshDriver;
import org.openqa.selenium.testing.NotYetImplemented;

public class SetNetworkConditionsTest extends JupiterTestBase {

Expand All @@ -48,7 +46,6 @@ private Boolean isOnline(String contextId, Script script) {

@Test
@NeedsFreshDriver
@NotYetImplemented(FIREFOX)
void canSetNetworkConditionsOfflineWithContext() {
BrowsingContext context = new BrowsingContext(driver, driver.getWindowHandle());
String contextId = context.getId();
Expand All @@ -73,7 +70,6 @@ void canSetNetworkConditionsOfflineWithContext() {

@Test
@NeedsFreshDriver
@NotYetImplemented(FIREFOX)
void canSetNetworkConditionsOfflineWithUserContext() {
Browser browser = new Browser(driver);
String userContext = browser.createUserContext();
Expand Down
Loading