PageRenderTime 24ms CodeModel.GetById 17ms app.highlight 6ms RepoModel.GetById 0ms app.codeStats 0ms

/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
 1package it;
 2
 3
 4import org.openqa.selenium.By;
 5
 6public class FollowMenuItem extends it.MenuItem
 7{
 8
 9    public FollowMenuItem(String pageId)
10    {
11        super(pageId);
12    }
13
14    @Override
15    public By getLocator()
16    {
17        return By.id("easyfollow-follow-label-action");
18    }
19}