2015年8月31日 星期一

passing arguments to nosetest

Below is only for Mac:
$ NOSEQUICK=1 nosetests my_module/tests/my_test.py
then in your code you can check if os.getenv('NOSEQUICK', ''):.

For cross-platform
Use nose-testconfig
Test Configuration plugin for nosetests.

About

Written by Jesse Noller Licensed under the Apache Software License, 2.0
You can install it with pip install nose-testconfig

What It Does

nose-testconfig is a plugin to the nose test framework which provides a faculty for passing test-specific (or test-run specific) configuration data to the tests being executed.
Currently configuration files in the following formats are supported:
The plugin is meant to be flexible, ergo the support of exec’ing arbitrary python files as configuration files with no checks. The default format is assumed to be ConfigParser ini-style format.
The plugin provides a method of overriding certain parameters from the command line (assuming that the main “config” object is a dict) and can easily have additional parsers added to it.
A configuration file may not be provided. In this case, the config object is an emtpy dict. Any command line “overriding” paramters will be added to the dict.

Test Usage

For now (until something better comes along) tests can import the “config” singleton from testconfig:
from testconfig import config
By default, YAML files parse into a nested dictionary, and ConfigParser ini files are also collapsed into a nested dictionary for foo[bar][baz] style access. Tests can obviously access configuration data by referencing the relevant dictionary keys:
from testconfig import config
def test_foo():
    target_server_ip = config['servers']['webapp_ip']
Warning: Given this is just a dictionary singleton, tests can easily write into the configuration. This means that your tests can write into the config space and possibly alter it. This also means that threaded access into the configuration can be interesting.
When using pure python configuration - obviously the “sky is the the limit” - given that the configuration is loaded via an exec, you could potentially modify nose, the plugin, etc. However, if you do not export a config{} dict as part of your python code, you obviously won’t be able to import the config object from testconfig.
When using YAML-style configuration, you get a lot of the power of pure python without the danger of unprotected exec() - you can obviously use the pyaml python-specific objects and all of the other YAML creamy goodness.

Defining a configuration file

Simple ConfigParser style:
[myapp_servers]
main_server = 10.1.1.1
secondary_server = 10.1.1.2
So your tests access the config options like this:
from testconfig import config
def test_foo():
    main_server = config['myapp_servers']['main_server']
YAML style configuration::
myapp:
servers:
main_server: 10.1.1.1 secondary_server: 10.1.1.2
And your tests can access it thus:
from testconfig import config
def test_foo():
    main_server = config['myapp']['servers']['main_server']
Python configuration file:
import socket

global config
config = {}
possible_main_servers = ['10.1.1.1', '10.1.1.2']

for srv in possible_main_servers:
    try:
        s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        s.connect((srv, 80))
    except:
        continue
    s.close()
    config['main_server'] = srv
    break
And lo, the config is thus:
from testconfig import config
def test_foo():
    main_server = config['main_server']
If you need to put python code into your configuration, you either need to use the python-config file faculties, or you need to use the !!python tags within PyYAML/YAML - raw ini files no longer have any sort of eval magic.

Command line options

After it is installed, the plugin adds the following command line flags to nosetests:
--tc-file=TESTCONFIG  Configuration file to parse and pass to tests
                      [NOSE_TEST_CONFIG_FILE]

--tc-format=TESTCONFIGFORMAT  Test config file format, default is
                              configparser ini format
                              [NOSE_TEST_CONFIG_FILE_FORMAT]

--tc=OVERRIDES        Option:Value specific overrides.

--tc-exact            Optional: Do not explode periods in override keys to
                      individual keys within the config dict, instead treat
                      them as config[my.toplevel.key] ala sqlalchemy.url in
                      pylons.
Passing in an INI configuration file:
$ nosetests -s --tc-file example_cfg.ini
Passing in a YAML configuration file:
$ nosetests -s --tc-file example_cfg.yaml --tc-format yaml
Passing in a Python configuration file:
$ nosetests -s --tc-file example_cfg.py --tc-format python
Overriding a configuration value on the command line:
$ nosetests -s --tc-file example_cfg.ini --tc=myvalue.sub:bar
Passing paramters on the command line without specifying a configuration file:
$ nosetests -s --tc=myvalue.sub2:baz
Overriding multiple key:value pairs:
$ nosetests -s --tc-file example_cfg.ini --tc=myvalue.sub:bar \
    --tc=myvalue.sub2:baz --tc=myvalue.sub3:bar3
Warning: When using the –tc= flag, you can pass it in as many times as you want to override as many keys/values as needed. The format is inparent.child.child = value format - the periods are translated into keys within the config dict, for example:
myvalue.sub2:baz = config[myvalue][sub2] = baz
You can override the explosion of the periods by passing in the –tc-exact argument on the command line.

Special environment variables

If you have a test which performs an import like this:
from testconfig import config
Then you know you can not run your test through a tool like pychecker as pychecker executes the file you are scanning, an warning is thrown and any use of the config dict will cause an exception.
To work around this, I’ve added four environment variable checks which, if set will cause a given configuration file to be auto-loaded into the module and the config dict will be populated. These are:
NOSE_TESTCONFIG_AUTOLOAD_YAML
NOSE_TESTCONFIG_AUTOLOAD_INI
NOSE_TESTCONFIG_AUTOLOAD_PYTHON
NOSE_TESTCONFIG_AUTOLOAD_JSON
Setting one of these to full path of the target configuration file in your environment/editor/etc will make it auto load that configuration file. You can now run it through pychecker. Much success was had!
For example, I set NOSE_TESTCONFIG_AUTOLOAD_YAML to /Users/jesse/foo.yaml within textmate. I can now use pychecker via control-shift-v with much win.

reference : https://pypi.python.org/pypi/nose-testconfig

selenium.webdriver.support.expected_conditions

class selenium.webdriver.support.expected_conditions.alert_is_present[source]
Expect an alert to be present.
class selenium.webdriver.support.expected_conditions.element_located_selection_state_to_be(locatoris_selected)[source]
An expectation to locate an element and check if the selection state specified is in that state. locator is a tuple of (by, path) is_selected is a boolean
class selenium.webdriver.support.expected_conditions.element_located_to_be_selected(locator)[source]
An expectation for the element to be located is selected. locator is a tuple of (by, path)
class selenium.webdriver.support.expected_conditions.element_selection_state_to_be(elementis_selected)[source]
An expectation for checking if the given element is selected. element is WebElement object is_selected is a Boolean.”
class selenium.webdriver.support.expected_conditions.element_to_be_clickable(locator)[source]
An Expectation for checking an element is visible and enabled such that you can click it.
class selenium.webdriver.support.expected_conditions.element_to_be_selected(element)[source]
An expectation for checking the selection is selected. element is WebElement object
class selenium.webdriver.support.expected_conditions.frame_to_be_available_and_switch_to_it(locator)[source]
An expectation for checking whether the given frame is available to switch to. If the frame is available it switches the given driver to the specified frame.
class selenium.webdriver.support.expected_conditions.invisibility_of_element_located(locator)[source]
An Expectation for checking that an element is either invisible or not present on the DOM.
locator used to find the element
class selenium.webdriver.support.expected_conditions.presence_of_all_elements_located(locator)[source]
An expectation for checking that there is at least one element present on a web page. locator is used to find the element returns the list of WebElements once they are located
class selenium.webdriver.support.expected_conditions.presence_of_element_located(locator)[source]
An expectation for checking that an element is present on the DOM of a page. This does not necessarily mean that the element is visible. locator - used to find the element returns the WebElement once it is located
class selenium.webdriver.support.expected_conditions.staleness_of(element)[source]
Wait until an element is no longer attached to the DOM. element is the element to wait for. returns False if the element is still attached to the DOM, true otherwise.
class selenium.webdriver.support.expected_conditions.text_to_be_present_in_element(locatortext_)[source]
An expectation for checking if the given text is present in the specified element. locator, text
class selenium.webdriver.support.expected_conditions.text_to_be_present_in_element_value(locatortext_)[source]
An expectation for checking if the given text is present in the element’s locator, text
class selenium.webdriver.support.expected_conditions.title_contains(title)[source]
An expectation for checking that the title contains a case-sensitive substring. title is the fragment of title expected returns True when the title matches, False otherwise
class selenium.webdriver.support.expected_conditions.title_is(title)[source]
An expectation for checking the title of a page. title is the expected title, which must be an exact match returns True if the title matches, false otherwise.
class selenium.webdriver.support.expected_conditions.visibility_of(element)[source]
An expectation for checking that an element, known to be present on the DOM of a page, is visible. Visibility means that the element is not only displayed but also has a height and width that is greater than 0. element is the WebElement returns the (same) WebElement once it is visible
class selenium.webdriver.support.expected_conditions.visibility_of_element_located(locator)[source]
An expectation for checking that an element is present on the DOM of a page and visible. Visibility means that the element is not only displayed but also has a height and width that is greater than 0. locator - used to find the element returns the WebElement once it is located and visible

reference : https://selenium.googlecode.com/git/docs/api/py/webdriver_support/selenium.webdriver.support.expected_conditions.html

2015年8月27日 星期四

Class ExpectedConditions

    • Method Detail

      • titleIs

        public static ExpectedCondition<java.lang.Boolean> titleIs(java.lang.String title)
        An expectation for checking the title of a page.
        Parameters:
        title - the expected title, which must be an exact match
        Returns:
        true when the title matches, false otherwise
      • titleContains

        public static ExpectedCondition<java.lang.Boolean> titleContains(java.lang.String title)
        An expectation for checking that the title contains a case-sensitive substring
        Parameters:
        title - the fragment of title expected
        Returns:
        true when the title matches, false otherwise
      • presenceOfElementLocated

        public static ExpectedCondition<WebElement> presenceOfElementLocated(By locator)
        An expectation for checking that an element is present on the DOM of a page. This does not necessarily mean that the element is visible.
        Parameters:
        locator - used to find the element
        Returns:
        the WebElement once it is located
      • visibilityOfElementLocated

        public static ExpectedCondition<WebElement> visibilityOfElementLocated(By locator)
        An expectation for checking that an element is present on the DOM of a page and visible. Visibility means that the element is not only displayed but also has a height and width that is greater than 0.
        Parameters:
        locator - used to find the element
        Returns:
        the WebElement once it is located and visible
      • visibilityOfAllElementsLocatedBy

        public static ExpectedCondition<java.util.List<WebElement>> visibilityOfAllElementsLocatedBy(By locator)
        An expectation for checking that all elements present on the web page that match the locator are visible. Visibility means that the elements are not only displayed but also have a height and width that is greater than 0.
        Parameters:
        locator - used to find the element
        Returns:
        the list of WebElements once they are located
      • visibilityOfAllElements

        public static ExpectedCondition<java.util.List<WebElement>> visibilityOfAllElements(java.util.List<WebElement> elements)
        An expectation for checking that all elements present on the web page that match the locator are visible. Visibility means that the elements are not only displayed but also have a height and width that is greater than 0.
        Parameters:
        elements - list of WebElements
        Returns:
        the list of WebElements once they are located
      • visibilityOf

        public static ExpectedCondition<WebElement> visibilityOf(WebElement element)
        An expectation for checking that an element, known to be present on the DOM of a page, is visible. Visibility means that the element is not only displayed but also has a height and width that is greater than 0.
        Parameters:
        element - the WebElement
        Returns:
        the (same) WebElement once it is visible
      • presenceOfAllElementsLocatedBy

        public static ExpectedCondition<java.util.List<WebElement>> presenceOfAllElementsLocatedBy(By locator)
        An expectation for checking that there is at least one element present on a web page.
        Parameters:
        locator - used to find the element
        Returns:
        the list of WebElements once they are located
      • textToBePresentInElement

        public static ExpectedCondition<java.lang.Boolean> textToBePresentInElement(WebElement element,
                                                                                    java.lang.String text)
        An expectation for checking if the given text is present in the specified element.
        Parameters:
        element - the WebElement
        text - to be present in the element
        Returns:
        true once the element contains the given text
      • textToBePresentInElement

        @Deprecated
        public static ExpectedCondition<java.lang.Boolean> textToBePresentInElement(By locator,
                                                                                                java.lang.String text)
        An expectation for checking if the given text is present in the element that matches the given locator.
        Parameters:
        locator - used to find the element
        text - to be present in the element found by the locator
        Returns:
        the WebElement once it is located and visible
      • textToBePresentInElementLocated

        public static ExpectedCondition<java.lang.Boolean> textToBePresentInElementLocated(By locator,
                                                                                           java.lang.String text)
        An expectation for checking if the given text is present in the element that matches the given locator.
        Parameters:
        locator - used to find the element
        text - to be present in the element found by the locator
        Returns:
        true once the first element located by locator contains the given text
      • textToBePresentInElementValue

        public static ExpectedCondition<java.lang.Boolean> textToBePresentInElementValue(WebElement element,
                                                                                         java.lang.String text)
        An expectation for checking if the given text is present in the specified elements value attribute.
        Parameters:
        element - the WebElement
        text - to be present in the element's value attribute
        Returns:
        true once the element's value attribute contains the given text
      • textToBePresentInElementValue

        public static ExpectedCondition<java.lang.Boolean> textToBePresentInElementValue(By locator,
                                                                                         java.lang.String text)
        An expectation for checking if the given text is present in the specified elements value attribute.
        Parameters:
        locator - used to find the element
        text - to be present in the value attribute of the element found by the locator
        Returns:
        true once the value attribute of the first element located by locator contains the given text
      • frameToBeAvailableAndSwitchToIt

        public static ExpectedCondition<WebDriver> frameToBeAvailableAndSwitchToIt(java.lang.String frameLocator)
        An expectation for checking whether the given frame is available to switch to.If the frame is available it switches the given driver to the specified frame.
        Parameters:
        frameLocator - used to find the frame (id or name)
      • frameToBeAvailableAndSwitchToIt

        public static ExpectedCondition<WebDriver> frameToBeAvailableAndSwitchToIt(By locator)
        An expectation for checking whether the given frame is available to switch to.If the frame is available it switches the given driver to the specified frame.
        Parameters:
        locator - used to find the frame
      • invisibilityOfElementLocated

        public static ExpectedCondition<java.lang.Boolean> invisibilityOfElementLocated(By locator)
        An expectation for checking that an element is either invisible or not present on the DOM.
        Parameters:
        locator - used to find the element
      • invisibilityOfElementWithText

        public static ExpectedCondition<java.lang.Boolean> invisibilityOfElementWithText(By locator,
                                                                                         java.lang.String text)
        An expectation for checking that an element with text is either invisible or not present on the DOM.
        Parameters:
        locator - used to find the element
        text - of the element
      • elementToBeClickable

        public static ExpectedCondition<WebElement> elementToBeClickable(By locator)
        An expectation for checking an element is visible and enabled such that you can click it.
        Parameters:
        locator - used to find the element
        Returns:
        the WebElement once it is located and clickable (visible and enabled)
      • elementToBeClickable

        public static ExpectedCondition<WebElement> elementToBeClickable(WebElement element)
        An expectation for checking an element is visible and enabled such that you can click it.
        Parameters:
        element - the WebElement
        Returns:
        the (same) WebElement once it is clickable (visible and enabled)
      • stalenessOf

        public static ExpectedCondition<java.lang.Boolean> stalenessOf(WebElement element)
        Wait until an element is no longer attached to the DOM.
        Parameters:
        element - The element to wait for.
        Returns:
        false is the element is still attached to the DOM, true otherwise.
      • refreshed

        public static <T> ExpectedCondition<T> refreshed(ExpectedCondition<T> condition)
        Wrapper for a condition, which allows for elements to update by redrawing. This works around the problem of conditions which have two parts: find an element and then check for some condition on it. For these conditions it is possible that an element is located and then subsequently it is redrawn on the client. When this happens a StaleElementReferenceException is thrown when the second part of the condition is checked.
      • elementToBeSelected

        public static ExpectedCondition<java.lang.Boolean> elementToBeSelected(WebElement element)
        An expectation for checking if the given element is selected.
      • elementSelectionStateToBe

        public static ExpectedCondition<java.lang.Boolean> elementSelectionStateToBe(WebElement element,
                                                                                     boolean selected)
        An expectation for checking if the given element is selected.
      • elementToBeSelected

        public static ExpectedCondition<java.lang.Boolean> elementToBeSelected(By locator)
      • elementSelectionStateToBe

        public static ExpectedCondition<java.lang.Boolean> elementSelectionStateToBe(By locator,
                                                                                     boolean selected)
      • not

        public static ExpectedCondition<java.lang.Boolean> not(ExpectedCondition<?> condition)
        An expectation with the logical opposite condition of the given condition.

reference : http://selenium.googlecode.com/git/docs/api/java/org/openqa/selenium/support/ui/ExpectedConditions.html