io.github.sukgu.support.FindByCssSelector 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
The newest version!
package io.github.sukgu.support;
class FindByCssSelector extends BaseBy {
protected FindByCssSelector(String selector, String selectorType) {
super(selector, selectorType);
}
}