Fullcalendar Resource-timeline 機能を使用しています。
イベントを作成するために日付をクリックする自動テストを作成したいと考えています。ここでの問題は、セルが dom 要素ではないことです。私がこれまでに思いついた解決策は、クリックするカーソルの座標を計算することですが、うまくいきません。
WebDriver driver = getDriver();
Actions actions = new Actions(driver);
// Get absence calendar
WebElement absenceCalendar = getAbsenceCalendar(driver);
// Get X coordinate for the first monday of the month. Add 5px in order to close in to the center
int xCoordinates = getFirstDayFromAnyCalendar(absenceCalendar,"L").getLocation().getX()+5;
logger.info("X: "+xCoordinates);
// Get Y coordinate from jeune
int yCoordinates = getJeuneLineFromCalendar(absenceCalendar,jeune).getLocation().getY();
logger.info("Y: "+yCoordinates);
//Move the cursor to the top left corner of the screen
actions.moveToElement(driver.findElement(By.tagName("body")), 0, 0);
//Move the cursor to the coordinates and click.
actions.moveByOffset(xCoordinates, yCoordinates).click().perform();
座標はチェックアウトしますが、クリックは機能しません。何か案が ?