@Test
    public void testEmptyUsernameCreatesCorrectPopup() {
        onView(ViewMatchers.withId(R.id.signupButton)).perform(ViewActions.click());
        // Check if the popup is displayed
        onView(ViewMatchers.withText(R.string.noNameMessage)).check(matches(isDisplayed())).perform(ViewActions.click());