49 lines
2.0 KiB
Python
49 lines
2.0 KiB
Python
# disable missing docstring
|
|
# pylint: disable=C0111
|
|
|
|
from lettuce import world, step
|
|
from terrain.steps import reload_the_page
|
|
|
|
|
|
@step('I have set "show captions" to (.*)$')
|
|
def set_show_captions(step, setting):
|
|
world.css_click('a.edit-button')
|
|
world.wait_for(lambda _driver: world.css_visible('a.save-button'))
|
|
world.browser.select('Show Captions', setting)
|
|
world.css_click('a.save-button')
|
|
|
|
|
|
@step('when I view the (video.*) it (.*) show the captions$')
|
|
def shows_captions(_step, video_type, show_captions):
|
|
# Prevent cookies from overriding course settings
|
|
world.browser.cookies.delete('hide_captions')
|
|
if show_captions == 'does not':
|
|
assert world.css_has_class('.%s' % video_type, 'closed')
|
|
else:
|
|
assert world.is_css_not_present('.%s.closed' % video_type)
|
|
|
|
|
|
@step('I see the correct video settings and default values$')
|
|
def correct_video_settings(_step):
|
|
world.verify_all_setting_entries([['Display Name', 'Video', False],
|
|
['Download Track', '', False],
|
|
['Download Video', '', False],
|
|
['End Time', '0', False],
|
|
['HTML5 Subtitles', '', False],
|
|
['Show Captions', 'True', False],
|
|
['Start Time', '0', False],
|
|
['Video Sources', '', False],
|
|
['Youtube ID', 'OEoXaMPEzfM', False],
|
|
['Youtube ID for .75x speed', '', False],
|
|
['Youtube ID for 1.25x speed', '', False],
|
|
['Youtube ID for 1.5x speed', '', False]])
|
|
|
|
|
|
@step('my video display name change is persisted on save$')
|
|
def video_name_persisted(step):
|
|
world.css_click('a.save-button')
|
|
reload_the_page(step)
|
|
world.edit_component()
|
|
world.verify_setting_entry(world.get_setting_entry('Display Name'), 'Display Name', '3.4', True)
|
|
|