I have the page object as below:
@FindBy (className = "all-time-menu-icon")
private FluentWebElement enrichmentOptions;
/**
* @return FluentWebElement for Enrichment options
*/
public FluentWebElement getEnrichmentOptions() {
return enrichmentOptions;
}
Now I want to call the above FluentWebElement getEnrichmentOptions() from the testcase with some waiting expected condition?
Please help with respect to the above scenario. Thanks In Advance.