blob: cc353609eca6594747d3e19343995e753daabf06 (
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
|
package com.vaadin.tests.components.table;
import static org.hamcrest.MatcherAssert.assertThat;
import org.junit.Test;
import org.openqa.selenium.By;
import com.vaadin.testbench.elements.ButtonElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
public class TableCacheMinimizingOnFetchRowsTest extends MultiBrowserTest {
@Test
public void testCacheSize() throws InterruptedException {
openTestURL();
scrollToBottomOfTable();
// the row request might vary slightly with different browsers
String logtext1 = "requested 60 rows";
String logtext2 = "requested 61 rows";
assertThat("Requested cached rows did not match expected",
logContainsText(logtext1) || logContainsText(logtext2));
}
private void scrollToBottomOfTable() {
waitForElementPresent(By.className("v-button"));
$(ButtonElement.class).first().click();
}
}
|