created on Thu Aug 12 17:40:26 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

2

100.0%

19.242 seconds

0

0

0

2. Features

2.1. Functionality of Component Variant: Using HTL Template in LG PASS

Result: PASS Time: 8.524 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Content Template"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#contenttemplate1"
  • When I am on the component showcase page

1
2
setWindowSize(viewport)
waitForAuthorPreviewPage()
  • Then The component should be on the page

1
def component = waitForComponent(selector)
  • And Should have text generated by from HTL Template Generic Details component in the page

1
2
assert compareInnerTextIgnoreCase("${selector}","In Page Generic Details Content")
takeScreenshot($(selector).firstElement(), "Should have sample content")
Current

Functionality of Component Variant Using HTL Template in LG Should have sample content

  • Where:

2.2. Functionality of Component Variant: Using Custom Template in LG PASS

Result: PASS Time: 8.055 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Content Template"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#contenttemplate2"
  • When I am on the component showcase page

1
2
setWindowSize(viewport)
waitForAuthorPreviewPage()
  • Then The component should be on the page

1
def component = waitForComponent(selector)
  • And Should have text generated by from Custom Template Generic Details component in the page

1
2
assert compareInnerTextIgnoreCase("${selector}","In Page Generic Details Content")
takeScreenshot($(selector).firstElement(), "Should have text generated by from Custom Template Generic Details component in the page")
Current

Functionality of Component Variant Using Custom Template in LG Should have text generated by from Custom Template Generic Details component in the page

  • Where: