com.vaadin.flow.component.confirmdialog.testbench.ConfirmDialogElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-confirm-dialog-testbench Show documentation
Show all versions of vaadin-confirm-dialog-testbench Show documentation
Vaadin Confirm Dialog Testbench API
package com.vaadin.flow.component.confirmdialog.testbench;
/*
* #%L
* Vaadin Confirm Dialog Testbench API
* %%
* Copyright (C) 2018 Vaadin Ltd
* %%
* This program is available under Commercial Vaadin Add-On License 3.0
* (CVALv3).
*
* See the file license.html distributed with this software for more
* information about licensing.
*
* You should have received a copy of the CVALv3 along with this program.
* If not, see .
* #L%
*/
import org.openqa.selenium.SearchContext;
import com.vaadin.flow.component.button.testbench.ButtonElement;
import com.vaadin.testbench.ElementQuery;
import com.vaadin.testbench.TestBenchElement;
import com.vaadin.testbench.elementsbase.Element;
@Element("vaadin-confirm-dialog")
public class ConfirmDialogElement extends TestBenchElement {
@Override
public SearchContext getContext() {
return getPropertyElement("$", "dialog", "$", "overlay", "$",
"content");
}
private TestBenchElement getButton(String buttonId, String slotName) {
ElementQuery query = $(TestBenchElement.class)
.attribute("slot", slotName);
if (query.exists()) {
return query.first();
}
return $(ButtonElement.class).id(buttonId);
}
public TestBenchElement getConfirmButton() {
return getButton("confirm", "confirm-button");
}
public TestBenchElement getRejectButton() {
return getButton("reject", "reject-button");
}
public TestBenchElement getCancelButton() {
return getButton("cancel", "cancel-button");
}
public String getMessageText() {
return getPropertyString("message");
}
public String getHeaderText() {
return getPropertyString("header");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy