Skip to content

Commit

Permalink
[java] Enabling BiDi test for Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol authored and elgatov committed Jun 27, 2022
1 parent 0f1c94c commit cbfdafc
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions java/test/org/openqa/selenium/bidi/BiDiSessionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,22 @@

package org.openqa.selenium.bidi;

import static org.assertj.core.api.AssertionsForClassTypes.assertThat;

import org.junit.After;
import org.junit.Ignore;
import org.junit.Test;
import org.openqa.selenium.firefox.FirefoxBinary;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxOptions;

import java.util.Collections;

import static org.assertj.core.api.AssertionsForClassTypes.assertThat;

public class BiDiSessionTest {

private FirefoxDriver driver;

@Ignore
@Test
public void shouldBeAbleToCreateABiDiSession() {
FirefoxOptions options = new FirefoxOptions();

FirefoxBinary binary = new FirefoxBinary(FirefoxBinary.Channel.BETA);
options.setBinary(binary);
// Enable BiDi
options.setCapability("webSocketUrl", true);

Expand Down

0 comments on commit cbfdafc

Please sign in to comment.