Files
edx-platform/lms/djangoapps/courseware/features/registration.py
2013-03-15 14:02:20 -04:00

26 lines
1.0 KiB
Python

from lettuce import world, step
from lettuce.django import django_url
@step('I register for the course "([^"]*)"$')
def i_register_for_the_course(step, course_id):
world.browser.visit(django_url('courses/%s/about' % course_id))
intro_section = world.browser.find_by_css('section.intro')
register_link = intro_section.find_by_css('a.register')
register_link.click()
assert world.browser.is_element_present_by_css('section.container.dashboard')
@step(u'I should see the course numbered "([^"]*)" in my dashboard$')
def i_should_see_that_course_in_my_dashboard(step, course):
course_link_css = 'section.my-courses a[href*="%s"]' % course
assert world.browser.is_element_present_by_css(course_link_css)
@step(u'I press the "([^"]*)" button in the Unenroll dialog')
def i_press_the_button_in_the_unenroll_dialog(step, value):
button_css = 'section#unenroll-modal input[value="%s"]' % value
world.browser.find_by_css(button_css).click()
assert world.browser.is_element_present_by_css('section.container.dashboard')