class Selenium::WebDriver::FedCM::Account
Represents an account displayed in a FedCm account list. See: w3c-fedid.github.io/FedCM/#dictdef-identityprovideraccount
https://w3c-fedid.github.io/FedCM/#webdriver-accountlist
Constants
- LOGIN_STATE_SIGNIN
- LOGIN_STATE_SIGNUP
Attributes
Public Class Methods
Source
# File lib/selenium/webdriver/common/fedcm/account.rb, line 34 def initialize(**args) @account_id = args['accountId'] @email = args['email'] @name = args['name'] @given_name = args['givenName'] @picture_url = args['pictureUrl'] @idp_config_url = args['idpConfigUrl'] @login_state = args['loginState'] @terms_of_service_url = args['termsOfServiceUrl'] @privacy_policy_url = args['privacyPolicyUrl'] end
steep:ignore:start