mangroveorg/datawinners

View on GitHub
func_tests/framework/utils/common_utils.py

Summary

Maintainability
B
6 hrs
Test Coverage
# vim: ai ts=4 sts=4 et sw=4 encoding=utf-8
import functools
import random
import string
import time
from unittest import SkipTest, skipUnless
from framework.exception import CouldNotLocateElementException

from pages.page import Page
from selenium.webdriver.common.by import By
from selenium.common.exceptions import NoSuchElementException

import datetime

__all__ = ['by_css', 'by_id', 'by_xpath', 'by_name']


class CommonUtilities(Page):
    def __init__(self, driver):
        Page.__init__(self, driver)

    def wait_for_element(self, time_out_in_seconds, object_id):
        """Finds elements by their id by waiting till timeout."""

        current_time = datetime.datetime.now()
        end_time = current_time + datetime.timedelta(0, time_out_in_seconds)

        while current_time < end_time:
            try:
                self.driver.find(object_id)
                print "Object", object_id, "is present."
                break
            except NoSuchElementException:
                current_time = datetime.datetime.now()
        return self

    def is_element_present(self, element_locator):
        try:
            locator = self.driver.find(element_locator)
            return locator
        except CouldNotLocateElementException:
            return False


def get_random_three_digit_string():
    return''.join(random.choice(string.ascii_lowercase) for x in range(3))


def get_epoch_last_three_digit():
    epoch = long(time.time() * 100)
    epoch_last_three_digit = divmod(epoch, 1000)[1]
    while len(str(epoch_last_three_digit)) < 3:
        epoch_last_three_digit += 900
    return epoch_last_three_digit


def get_epoch_last_ten_digit():
    epoch = long(time.time() * 1000000)
    epoch_last_ten_digit = divmod(epoch, 10000000000)[1]
    while len(str(epoch_last_ten_digit)) < 10:
        epoch_last_ten_digit += 9000000000
    return epoch_last_ten_digit


def generateId():
    epoch_last_three_digit = get_epoch_last_three_digit()
    return str(epoch_last_three_digit) + get_random_three_digit_string()


# End of class and Starting of normal functions
def by_css(element_locator):
    """
    Function to create locator dictionary by css

    Args:
    element_locator is value of locator

    Return dictionary of locator e.g. {"locator":element_locator,"by":By.CSS_SELECTOR}
    """
    return {"locator": element_locator, "by": By.CSS_SELECTOR}


def by_id(element_locator):
    """
    Function to create locator dictionary by ID

    Args:
    element_locator is value of locator

    Return dictionary of locator e.g. {"locator":element_locator,"by":By.ID}
    """
    return {"locator": element_locator, "by": By.ID}


def by_xpath(element_locator):
    """
    Function to create locator dictionary by XPath

    Args:
    element_locator is value of locator

    Return dictionary of locator e.g. {"locator":element_locator,"by":By.XPATH}
    """
    return {"locator": element_locator, "by": By.XPATH}


def by_name(element_locator):
    """
    Function to create locator dictionary by Name

    Args:
    element_locator is value of locator

    Return dictionary of locator e.g. {"locator":element_locator,"by":By.NAME}
    """
    return {"locator": element_locator, "by": By.NAME}


def random_number(length=9):
    return ''.join(random.sample('1234567890', length))


def random_string(length=6):
    return ''.join(random.sample('abcdefghijklmnopqrs', length))

def generate_random_email_id():
    return random_string(5) + '@' + random_string(3) + '.com'




#def skipUntil(dateUntil):
#    def wrap(f):
#        if datetime.datetime.strptime(dateUntil, '%Y-%m-%d') < datetime.datetime.now():
#            return f
#        raise SkipTest("Skipped until %s"%dateUntil)
#    return wrap


def skipUntil(dateUntil):
    def skipd(f):
        @skipUnless( datetime.datetime.strptime(dateUntil, '%Y-%m-%d') < datetime.datetime.now(), "Skipped until %s"% dateUntil)
        @functools.wraps(f)
        def wrap(f):
             return f
        return wrap
    return skipd