Commit 5919456f by JonahStanley

Fixed some course-team bugs and other css stuff

parent 5941f5b7
...@@ -52,7 +52,7 @@ def have_a_course_with_two_sections(step): ...@@ -52,7 +52,7 @@ def have_a_course_with_two_sections(step):
def navigate_to_the_course_overview_page(step): def navigate_to_the_course_overview_page(step):
create_studio_user(is_staff=True) create_studio_user(is_staff=True)
log_into_studio() log_into_studio()
course_locator = '.class-name' course_locator = 'a.course-link'
world.css_click(course_locator) world.css_click(course_locator)
......
...@@ -55,6 +55,8 @@ def delete_other_user(_step, name): ...@@ -55,6 +55,8 @@ def delete_other_user(_step, name):
email="{0}{1}".format(name, EMAIL_EXTENSION)) email="{0}{1}".format(name, EMAIL_EXTENSION))
world.css_click(to_delete_css) world.css_click(to_delete_css)
# confirm prompt # confirm prompt
# need to wait for the animation to be done, there isn't a good success condition that won't work both on latest chrome and jenkins
world.wait(.5)
world.css_click(".wrapper-prompt-warning .action-primary") world.css_click(".wrapper-prompt-warning .action-primary")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment