You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CSS selector for the Sign-In button in the sign-in form (for SWA apps with the `template_swa` app name definition)
button_selector
str
CSS selector for the Sign-In button in the sign-in form (for three-field SWA apps with the `template_swa3field` app name definition)
[optional]
extra_field_selector
str
Enter the CSS selector for the extra field (for three-field SWA apps with the `template_swa3field` app name definition).
[optional]
extra_field_value
str
Enter the value for the extra field in the form (for three-field SWA apps with the `template_swa3field` app name definition).
[optional]
login_url_regex
str
A regular expression that further restricts targetURL to the specified regular expression
[optional]
password_field
str
CSS selector for the Password field in the sign-in form (for SWA apps with the `template_swa` app name definition)
password_selector
str
CSS selector for the Password field in the sign-in form (for three-field SWA apps with the `template_swa3field` app name definition)
[optional]
target_url
str
The URL of the sign-in page for this app (for three-field SWA apps with the `template_swa3field` app name definition)
[optional]
url
str
The URL of the sign-in page for this app (for SWA apps with the `template_swa` app name definition)
username_field
str
CSS selector for the Username field in the sign-in form (for SWA apps with the `template_swa` app name definition)
user_name_selector
str
CSS selector for the Username field in the sign-in form (for three-field SWA apps with the `template_swa3field` app name definition)
[optional]
Example
fromokta.models.swa_application_settings_applicationimportSwaApplicationSettingsApplication# TODO update the JSON string belowjson="{}"# create an instance of SwaApplicationSettingsApplication from a JSON stringswa_application_settings_application_instance=SwaApplicationSettingsApplication.from_json(json)
# print the JSON string representation of the objectprint(SwaApplicationSettingsApplication.to_json())
# convert the object into a dictswa_application_settings_application_dict=swa_application_settings_application_instance.to_dict()
# create an instance of SwaApplicationSettingsApplication from a dictswa_application_settings_application_from_dict=SwaApplicationSettingsApplication.from_dict(swa_application_settings_application_dict)