@Before
  public void setUp() {
    String userName = RandomStringUtils.randomAlphanumeric(5);

    ProfileUserProfilePage profilePage = new ProfileUserProfilePage(userName);

    getUtil().registerLoginAndGotoPage(profilePage.getUsername(), "password", profilePage.getURL());

    this.watchlistPage = profilePage.switchToWatchlist();

    this.testSpace = this.watchlistPage.getUsername() + "Test";
  }