created on Thu Aug 12 17:44:59 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

4

100.0%

13.715 seconds

0

0

0

2. Features

2.1. Functionality of Component Variant: Default in LG PASS

Result: PASS Time: 2.986 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#pageauthor1"
def selectorContainer = "#contentblock1 .contents"
  • 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 sample text

1
2
assert $(selector).text().trim().startsWith("Administrator")
takeScreenshot($(selector).firstElement(), "Should have sample content")
Current

Functionality of Component Variant Default in LG Should have sample content

  • Where:

2.2. Functionality of Component Variant: Simple in LG PASS

Result: PASS Time: 2.742 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#pageauthor2"
def selectorContainer = "#contentblock2 .contents"
  • 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 sample text

1
2
assert $(selector).text().trim().startsWith("Administrator")
takeScreenshot($(selector).firstElement(), "Should have sample content")
Current

Functionality of Component Variant Simple in LG Should have sample content

  • Where:

2.3. Functionality of Component Variant: Default with Override in LG PASS

Result: PASS Time: 3.153 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#pageauthor3"
def selectorContainer = "#contentblock3 .contents"
  • 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 sample text

1
2
assert $(selector).text().trim().startsWith("Author Full Name")
takeScreenshot($(selector).firstElement(), "Should have sample content")
Current

Functionality of Component Variant Default with Override in LG Should have sample content

  • Where:

2.4. Functionality of Component Variant: Simple with Override in LG PASS

Result: PASS Time: 2.996 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#pageauthor4"
def selectorContainer = "#contentblock4 .contents"
  • 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 sample text

1
2
assert $(selector).text().trim().startsWith("Author Full Name")
takeScreenshot($(selector).firstElement(), "Should have sample content")
Current

Functionality of Component Variant Simple with Override in LG Should have sample content

  • Where: