You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GridSvgInCellTest.java 621B

123456789101112131415161718192021222324
  1. package com.vaadin.tests.components.grid;
  2. import org.junit.Before;
  3. import org.junit.Test;
  4. import org.openqa.selenium.interactions.Actions;
  5. import com.vaadin.testbench.elements.GridElement;
  6. import com.vaadin.tests.tb3.SingleBrowserTest;
  7. public class GridSvgInCellTest extends SingleBrowserTest {
  8. @Before
  9. public void before() {
  10. setDebug(true);
  11. openTestURL();
  12. }
  13. @Test
  14. public void moveMouseOverSvgInCell() {
  15. GridElement grid = $(GridElement.class).first();
  16. new Actions(driver).moveToElement(grid.getCell(0, 0)).perform();
  17. assertNoErrorNotifications();
  18. }
  19. }