Files
edx-platform/common/test/acceptance/pages/lms/__init__.py
Michael Youngstrom 872cddedbf INCR
2019-04-29 09:37:44 -04:00

12 lines
343 B
Python

"""
Package of lms page objects for acceptance tests
"""
from __future__ import absolute_import
import os
# Get the URL of the instance under test
HOSTNAME = os.environ.get('BOK_CHOY_HOSTNAME', 'localhost')
LMS_PORT = os.environ.get('BOK_CHOY_LMS_PORT', 8003)
BASE_URL = os.environ.get('test_url', 'http://{}:{}'.format(HOSTNAME, LMS_PORT))