com.sdl.selenium.materialui.dialog.Dialog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Testy Show documentation
Show all versions of Testy Show documentation
Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications.
(optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)
The newest version!
package com.sdl.selenium.materialui.dialog;
import com.sdl.selenium.materialui.button.Button;
import com.sdl.selenium.web.SearchType;
import com.sdl.selenium.web.WebLocator;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class Dialog extends WebLocator {
public Dialog() {
setClassName("Dialog");
setBaseCls("MuiDialog-root");
setExcludeClasses("MuiModal-hidden");
WebLocator header = new WebLocator().setTag("h2").setClasses("MuiTypography-root");
setTemplateTitle(header);
}
public Dialog(String title, SearchType... searchTypes) {
this();
setTitle(title, searchTypes);
}
public Dialog(String title, String message) {
this(title);
WebLocator content = new WebLocator().setText(message, SearchType.DEEP_CHILD_NODE_OR_SELF);
setChildNodes(content);
}
public boolean press(String buttonName) {
return new Button(this, buttonName).click();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy