def create_latex_problem(step): world.click_new_component_button(step, '.large-problem-icon') # Go to advanced tab. world.css_click('#ui-id-2') world.click_component_from_menu( "i4x://edx/templates/problem/Problem_Written_in_LaTeX", '.xmodule_CapaModule')
def create_latex_problem(step): world.click_new_component_button(step, '.large-problem-icon') # Go to advanced tab (waiting for the tab to be visible) world.css_find('#ui-id-2') world.css_click('#ui-id-2') world.click_component_from_menu( "i4x://edx/templates/problem/Problem_Written_in_LaTeX", '.xmodule_CapaModule')
def create_latex_problem(step): world.click_new_component_button(step, '.large-problem-icon') def animation_done(_driver): return world.browser.evaluate_script("$('div.new-component').css('display')") == 'none' world.wait_for(animation_done) # Go to advanced tab. world.css_click('#ui-id-2') world.click_component_from_menu("problem", "latex_problem.yaml", '.xmodule_CapaModule')
def create_latex_problem(step): world.click_new_component_button(step, '.large-problem-icon') # Go to advanced tab. world.css_click('#ui-id-2') world.click_component_from_menu("problem", "latex_problem.yaml", '.xmodule_CapaModule')