blob: 1812bb355d7852de8c93bd9a573ba05238098813 (
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.themes.valo;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.lessThanOrEqualTo;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
/**
* Test for centered image icon in button with 'icon-align-top' style.
*
* @author Vaadin Ltd
*/
public class AlignTopIconInButtonTest extends MultiBrowserTest {
@Test
public void iconIsCenteredInsideButton() {
openTestURL();
WebElement wrapper = findElement(By.className("v-button-wrap"));
WebElement icon = wrapper.findElement(By.className("v-icon"));
int leftSpace = icon.getLocation().getX()
- wrapper.getLocation().getX();
int rightSpace = wrapper.getLocation().getX()
+ wrapper.getSize().getWidth() - icon.getLocation().getX()
- icon.getSize().getWidth();
assertThat(Math.abs(rightSpace - leftSpace), is(lessThanOrEqualTo(2)));
}
}
|