def test_revoke(self): email_1, password_1 = signup_teacher_directly() email_2, password_2 = signup_teacher_directly() name, postcode = create_organisation_directly(email_1) selenium.get(self.live_server_url + "/portal/redesign/home") page = HomePage(selenium)\ .go_to_login_page()\ .login_no_school(email_2, password_2) page = page.join_organisation(name) assert page.__class__.__name__ == 'OnboardingRevokeRequestPage' assert page.check_organisation_name(name, postcode) page = page.revoke_join() assert page.__class__.__name__ == 'OnboardingOrganisationPage'
def test_multiple_schools(self): # There was a bug where join requests to school 35 say would go to school 3, # 62 would go to 6, etc... this test checks for that n = 12 emails, passwords, names, postcodes = self.initialise_data(n) for i in range(n): emails[i], passwords[i] = signup_teacher_directly() names[i], postcodes[i] = create_organisation_directly(emails[i]) email, password = signup_teacher_directly() selenium.get(self.live_server_url + "/portal/redesign/home") page = HomePage(selenium)\ .go_to_login_page()\ .login_no_school(email, password) page = page.join_organisation(names[n - 1]) assert page.__class__.__name__ == 'OnboardingRevokeRequestPage' assert page.check_organisation_name(names[n - 1], postcodes[n - 1])