1 package com.atlassian.webdriver.confluence.page;
2
3 /**
4 * Extends the Login Page as Confluence redirects the user back to the login
5 * page when they log out.
6 */
7 public class LogoutPage extends ConfluenceLoginPage
8 {
9 private static final String URI = "/logout.action";
10
11
12 @Override
13 public String getUrl()
14 {
15 return URI;
16 }
17 }