Skip to content

Instantly share code, notes, and snippets.

@bulkan
Created September 13, 2012 06:25
Show Gist options
  • Save bulkan/3712331 to your computer and use it in GitHub Desktop.
Save bulkan/3712331 to your computer and use it in GitHub Desktop.
CommonLibrary.py
from robot.libraries.OperatingSystem import OperatingSystem
from robot.libraries.BuiltIn import BuiltIn
class CommonLibrary(object):
''' Common keywords that can be used by any test case'''
def __init__(self):
self.oslib = OperatingSystem()
self.builtin = BuiltIn()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment