org.sitoolkit.tester.domain.selenium.VerifyAttributeOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sit-wt Show documentation
Show all versions of sit-wt Show documentation
SIToolkit for Web Testing
The newest version!
package org.sitoolkit.tester.domain.selenium;
import org.openqa.selenium.WebElement;
import org.sitoolkit.tester.domain.test.TestStep;
public class VerifyAttributeOperation extends VerifyOperation {
@Override
protected String getActual(WebElement element, TestStep testStep) {
return element.getAttribute(testStep.getLocator().getAttributeName());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy