created on Fri Nov 08 01:57:19 UTC 2019 by ?

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

1

100.0%

9.389 seconds

0

0

0

2. Features

2.1. Authoring of News Details Component default PASS

Result: PASS Time: 7.763 seconds

  • Given: Component has already been inserted

1
def selector = "#news-details1"
  • When I am on the Component showcase page

1
TouchUIEditor page = waitForTouchUIPage(language)
  • Then The component should be on showcase page

1
waitFor { withFrame(TouchUIEditor.PAGE_FRAME_CONTENT) { $(selector) } }
  • And All dialogs are closed

1
2
page.Editor.isDialogOpen(compileComponentPath()) == false
report("All dialogs are closed")
  • And I open the dialog box

1
page.Editor.showDialog(compileComponentPath())
  • Then I should be able to see component author dialog

1
2
page.Editor.isDialogOpen(compileComponentPath()) == true
report("I should be able to see component author dialog")
  • When I close the dialog box

1
page.Editor.closeDialog(compileComponentPath())
  • Then I should be able to close component author dialog

1
2
page.Editor.isDialogOpen(compileComponentPath()) == false
report("I should be able to close component author dialog")