Telefonica/toolium

View on GitHub
toolium/pageelements/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-
"""
Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U.
This file is part of Toolium.

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.
"""

from toolium.pageelements.button_page_element import Button
from toolium.pageelements.checkbox_page_element import Checkbox
from toolium.pageelements.group_page_element import Group
from toolium.pageelements.input_radio_page_element import InputRadio
from toolium.pageelements.input_text_page_element import InputText
from toolium.pageelements.link_page_element import Link
from toolium.pageelements.page_element import PageElement
from toolium.pageelements.page_elements import PageElements, Groups
from toolium.pageelements.page_elements import Texts, InputTexts, Selects, Buttons, Links, Checkboxes, InputRadios
from toolium.pageelements.select_page_element import Select
from toolium.pageelements.text_page_element import Text

__all__ = ['PageElement', 'Text', 'InputText', 'Select', 'Button', 'Link', 'Checkbox', 'InputRadio', 'Group',
           'PageElements', 'Texts', 'InputTexts', 'Selects', 'Buttons', 'Links', 'Checkboxes', 'InputRadios', 'Groups']