Source code for pytest_splunk_addon_ui_smartx.components.login

#
# Copyright 2023 Splunk Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

import time

from selenium.common.exceptions import TimeoutException
from selenium.webdriver.common.by import By

from .base_component import BaseComponent, Selector

ENTERPRISE_CLOUD_ToS = True


[docs]class Login(BaseComponent): """ Component: Login To login into the Splunk instance """ def __init__(self, browser, container=Selector(select="form.loginForm")): """ :param browser: The selenium webdriver :param container: Container in which the table is located. Of type dictionary: {"by":..., "select":...} """ super().__init__(browser, container) self.elements = { "username": Selector(by=By.ID, select="username"), "password": Selector(by=By.ID, select="password"), "homepage": Selector(select='a[data-action="home"]'), "accept_checkbox": Selector(by=By.ID, select="accept"), "accept_button": Selector(select=" .accept-tos-button.btn.btn-primary"), }
[docs] def login(self, username, password): """ Login into the Splunk instance :param username: Str the username for the splunk instance we want to access :param password: Str the password for the splunk instance we want to access """ global ENTERPRISE_CLOUD_ToS self.username.send_keys(username) self.password.send_keys(password) self.password.send_keys("\ue007") try: if ENTERPRISE_CLOUD_ToS: ENTERPRISE_CLOUD_ToS = False self.wait_to_be_clickable("accept_checkbox") self.accept_checkbox.click() self.wait_for("accept_button") self.accept_button.click() except TimeoutException: pass self.wait_for("homepage", "Could not log in to the Splunk instance.")