Source code for pytest_splunk_addon_ui_smartx.components.controls.oauth_select

#
# 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.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys

from ..base_component import Selector
from .base_control import BaseControl


[docs]class OAuthSelect(BaseControl): """ Entity-Component: OAuthSelect OAuthSelect Javascript framework: OAuthSelect A dropdown which can select only one value """ def __init__(self, browser, container, searchable=True): """ :param browser: The selenium webdriver :param container: The locator of the container where the control is located in. """ super().__init__(browser, container) self.elements.update( { "values": Selector(select=container.select + ' [data-test="option"]'), "dropdown": Selector(select=container.select + " .dropdownBox"), } )
[docs] def select(self, value): """ Selects the value within hte select dropdown :param value: the value to select :return: Bool if successful in selection, else raises an error """ self.dropdown.click() popoverid = "#" + self.dropdown.get_attribute("data-test-popover-id") self.elements.update( { "values": Selector( select=popoverid + ' [data-test="option"]:not([data-test-selected="true"]) [data-test="label"]' ) } ) for each in self.get_elements("values"): if each.text.strip().lower() == value.lower(): each.click() return True else: raise ValueError("{} not found in select list".format(value))
[docs] def get_value(self): """ Gets the selected value :return: Str The elected value within the dropdown, else returns blank """ try: element = self.get_element("dropdown") return element.get_attribute("data-test-value") except: return ""
[docs] def list_of_values(self): """ Gets the list of value from the Single Select :returns: List of options from the single select """ selected_val = self.get_value() self.container.click() first_element = None list_of_values = [] popoverid = "#" + self.dropdown.get_attribute("data-test-popover-id") self.elements.update( {"values": Selector(select=popoverid + ' [data-test="option"]')} ) for each in self.get_elements("values"): list_of_values.append(each.text.strip()) return list_of_values