created on Thu Aug 12 17:51:33 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

2

100.0%

4.669 seconds

0

0

0

2. Features

2.1. Functionality of Component Variant: Default in LG PASS

Result: PASS Time: 1.672 seconds

  • Given: >the page hierarchy is created as "Components" > "Forms" > "Button"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#button1"
  • 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 content

1
2
assert compareInnerTextIgnoreCase("${selector}","Submit")
takeScreenshot($(selector).firstElement(), "Should have sample content Submit")
Current

Functionality of Component Variant Default in LG Should have sample content Submit

  • Where:

2.2. Functionality of Component Variant: Button in LG PASS

Result: PASS Time: 1.796 seconds

  • Given: >the page hierarchy is created as "Components" > "Forms" > "Button"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#button2"
  • 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 content

1
2
assert compareInnerTextIgnoreCase("${selector}","Button")
takeScreenshot($(selector).firstElement(), "Should have sample content Button")
Current

Functionality of Component Variant Button in LG Should have sample content Button

  • Where: