created on Fri Nov 08 01:44:38 UTC 2019 by ?

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

1

100.0%

7.141 seconds

0

0

0

2. Features

2.1. Authoring of Component PASS

Result: PASS Time: 5.603 seconds

  • Given: Component has already been inserted

1
def selector = "#pageauthor1"
  • 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")