io.github.sukgu.support.FindByXPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automation Show documentation
Show all versions of automation Show documentation
This project automates shadow-dom elements using java selenium
package io.github.sukgu.support;
class FindByXPath extends BaseBy {
protected FindByXPath(String selector, String selectorType) {
super(selector, selectorType);
}
}