Added Selenium page objects for LMS and studio

This commit is contained in:
Will Daly
2013-11-25 12:25:28 -05:00
parent 3cf75198c5
commit 04e66be705
20 changed files with 1243 additions and 0 deletions

29
setup.py Normal file
View File

@@ -0,0 +1,29 @@
#!/usr/bin/env python
"""
Install Selenium page objects for acceptance and end-to-end tests.
"""
from setuptools import setup
VERSION = '0.0.1'
DESCRIPTION = "Selenium page objects for edx-platform"
setup(
name='edx-selenium-pages',
version=VERSION,
author='edX',
url='http://github.com/edx/edx-platform',
description=DESCRIPTION,
license='AGPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Quality Assurance'
],
packages=['edxapp_selenium_pages']
)