<a href="test.aspx?id=1">TESTGOWN</a>
<a href="test.aspx?id=2">TESTGOWN</a>
TESTGOWN can be found in various places on the page.
This particular section displays links.
@FindBy(how = How.CSS,using = "a[href='test.aspx']")
The link is not clickable.
CacheLookup
@FindBy(how = How.CSS,using = "a[href='test.aspx']")
WebElement gownlink;
public void ClickDress()
{
System.out.println("gownlink"+gownlink);
gownlink.click();
}
CALLING CODE:
Dashboardpage= PageFactory.initElements(driver, DashboardPage.class);
Dashboardpage.ClickDress();
ERROR: Marionette INFO New connections will no longer be accepted