openvidu-test-e2e: fake Chrome Android test removed

pull/203/head
pabloFuente 2019-02-11 10:17:22 +01:00
parent 4153b41b5f
commit 12995ff4d9
1 changed files with 0 additions and 24 deletions

View File

@ -481,30 +481,6 @@ public class OpenViduTestAppE2eTest {
gracefullyLeaveParticipants(2);
}
@Test
@DisplayName("One2One Chrome Android")
void oneToOneChromeAndroid() throws Exception {
setupBrowser("chromeAndroid");
log.info("One2One Chrome Android");
user.getDriver().findElement(By.id("auto-join-checkbox")).click();
user.getDriver().findElement(By.id("one2one-btn")).click();
user.getEventManager().waitUntilEventReaches("connectionCreated", 4);
user.getEventManager().waitUntilEventReaches("accessAllowed", 2);
user.getEventManager().waitUntilEventReaches("streamCreated", 4);
user.getEventManager().waitUntilEventReaches("streamPlaying", 4);
final int numberOfVideos = user.getDriver().findElements(By.tagName("video")).size();
Assert.assertEquals("Expected 4 videos but found " + numberOfVideos, 4, numberOfVideos);
Assert.assertTrue("Videos were expected to have audio and video tracks", user.getEventManager()
.assertMediaTracks(user.getDriver().findElements(By.tagName("video")), true, true));
gracefullyLeaveParticipants(2);
}
@Test
@DisplayName("Cross-Browser test")
void crossBrowserTest() throws Exception {