63 lines
1.5 KiB
Python
63 lines
1.5 KiB
Python
from lettuce import world, step
|
|
from common import *
|
|
|
|
############### ACTIONS ####################
|
|
|
|
|
|
@step('There are no courses$')
|
|
def no_courses(step):
|
|
clear_courses()
|
|
|
|
|
|
@step('I click the New Course button$')
|
|
def i_click_new_course(step):
|
|
css_click('.new-course-button')
|
|
|
|
|
|
@step('I fill in the new course information$')
|
|
def i_fill_in_a_new_course_information(step):
|
|
fill_in_course_info()
|
|
|
|
|
|
@step('I create a new course$')
|
|
def i_create_a_course(step):
|
|
create_a_course()
|
|
|
|
|
|
@step('I click the course link in My Courses$')
|
|
def i_click_the_course_link_in_my_courses(step):
|
|
course_css = 'span.class-name'
|
|
css_click(course_css)
|
|
|
|
############ ASSERTIONS ###################
|
|
|
|
|
|
@step('the Courseware page has loaded in Studio$')
|
|
def courseware_page_has_loaded_in_studio(step):
|
|
courseware_css = 'a#courseware-tab'
|
|
assert world.browser.is_element_present_by_css(courseware_css)
|
|
|
|
|
|
@step('I see the course listed in My Courses$')
|
|
def i_see_the_course_in_my_courses(step):
|
|
course_css = 'span.class-name'
|
|
assert_css_with_text(course_css, 'Robot Super Course')
|
|
|
|
|
|
@step('the course is loaded$')
|
|
def course_is_loaded(step):
|
|
class_css = 'a.class-name'
|
|
assert_css_with_text(class_css, 'Robot Super Course')
|
|
|
|
|
|
@step('I am on the "([^"]*)" tab$')
|
|
def i_am_on_tab(step, tab_name):
|
|
header_css = 'div.inner-wrapper h1'
|
|
assert_css_with_text(header_css, tab_name)
|
|
|
|
|
|
@step('I see a link for adding a new section$')
|
|
def i_see_new_section_link(step):
|
|
link_css = 'a.new-courseware-section-button'
|
|
assert_css_with_text(link_css, 'New Section')
|