blob: 53a280fd1aa841137a7ae675016ed19190ca5855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
package com.vaadin.tests.components.grid;
import org.junit.Test;
import org.openqa.selenium.By;
import com.vaadin.testbench.parallel.TestCategory;
import com.vaadin.tests.tb3.MultiBrowserTest;
/**
* Tests that Grid gets correct height based on height mode, and resizes
* properly with details row if height is undefined.
*
* @author Vaadin Ltd
*/
@TestCategory("grid")
public class GridManyColumnsTest extends MultiBrowserTest {
@Override
public void setup() throws Exception {
super.setup();
openTestURL();
waitForElementPresent(By.className("v-grid"));
}
@Test
public void testGridPerformance() throws InterruptedException {
long renderingTime = testBench().totalTimeSpentRendering();
long requestTime = testBench().totalTimeSpentServicingRequests();
System.out.println("Grid with many columns spent " + renderingTime
+ "ms rendering and " + requestTime + "ms servicing requests ("
+ getDesiredCapabilities().getBrowserName() + ")");
}
}
|