/src/test/java/it/FollowMenuItem.java

https://bitbucket.org/xavist/easyfollow-confluence-plugin · Java · 19 lines · 14 code · 5 blank · 0 comment · 0 complexity · c73d4a769c7647d8d8964c0fb5da8c07 MD5 · raw file

  1. package it;
  2. import org.openqa.selenium.By;
  3. public class FollowMenuItem extends it.MenuItem
  4. {
  5. public FollowMenuItem(String pageId)
  6. {
  7. super(pageId);
  8. }
  9. @Override
  10. public By getLocator()
  11. {
  12. return By.id("easyfollow-follow-label-action");
  13. }
  14. }