created on Wed Sep 15 01:19:34 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

1

100.0%

2.968 seconds

0

0

0

2. Features

2.1. Functionality of Component Variant: Default in LG PASS

Result: PASS Time: 1.789 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#table1"
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 content

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

Functionality of Component Variant Default in LG Should have sample content

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • Where: