@FindBy(className = "shellTileBase")
private WebElement tile;
@FindBy(className = "FilterDefault FilterIcon UiIcon IconMirrorInRTL")
private WebElement form;
I am working with selenium and testng but am trying to add arquilliian to my testing. can arquillian handle
@FindBy(className ="")
With multiple class names as per my above example. When I run this I am getting a:
InvalidSelectorError: Compound class names not permitted
Is there a way around this?