Esempio n. 1
0
 def login_with_ldap(self, email, password):
     self.selenium.find_element(*self._sign_in_button_locator).click()
     self.wait_for_element_visible(*self._sign_in_to_standup_button_locator)
     self.selenium.find_element(*self._sign_in_to_standup_button_locator).click()
     auth = Auth0(self.selenium)
     auth.login_with_ldap(email, password)
     return TwoFactorAuthentication(self.selenium)
Esempio n. 2
0
 def login_with_ldap(self, email, password):
     self.selenium.find_element(*self._login_button_locator).click()
     auth = Auth0(self.selenium)
     auth.login_with_ldap(email, password)
     return TwoFactorAuthentication(self.selenium)
 def login_with_ldap(self, email, password):
     auth = Auth0(self.selenium)
     auth.login_with_ldap(email, password, ldap_only=True)
     return TwoFactorAuthentication(self.selenium)
Esempio n. 4
0
 def login_with_ldap(self, email, password):
     self.selenium.find_element(*self._sign_in_button).click()
     auth = Auth0(self.selenium)
     auth.login_with_ldap(email, password, ldap_only=True)
     return TwoFactorAuthentication(self.selenium)
Esempio n. 5
0
 def login_with_ldap(self, ldap_email, ldap_password):
     auth0 = self.click_sign_in_button()
     auth0.login_with_ldap(ldap_email, ldap_password)
     return TwoFactorAuthentication(self.base_url, self.selenium)