I am trying to click over a link using xpath locator , but the click is not happening. Also I dont get any error or exception. I have checked with selenium IDE that the path I am providing is correct to recognize the link.
Here is my code is
driver.findElement(By.xpath("//div[@class='bpm-social-task-row-data-header']/span/a")).click();
I have also tried this
WebElement steplink = driver.findElement(By.xpath("//div[@class='bpm-social-task-row-data-header']/span/a"));
System.out.println("steplink properties " + steplink.getText());
steplink.hover();
steplink.click();
This also giving same result.