blob: 2788b8d8365c49b33dfeb8562a2b5e614f4bb68c (
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
35
|
package com.vaadin.tests.components.popupview;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.util.List;
import org.junit.Test;
import org.openqa.selenium.WebElement;
import com.vaadin.testbench.By;
import com.vaadin.tests.tb3.MultiBrowserTest;
public class PopupViewCaptionTest extends MultiBrowserTest {
@Test
public void testCaption() {
openTestURL();
WebElement caption = driver.findElement(By.className("v-caption"));
assertNotNull(caption);
List<WebElement> elements = caption.findElements(By.xpath("*"));
boolean foundCaptionText = false;
for (WebElement element : elements) {
if ("Popup Caption:".equals(element.getText())) {
foundCaptionText = true;
break;
}
}
assertTrue("Unable to find caption text", foundCaptionText);
}
}
|