created on Sun Aug 01 23:40:56 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

1

100.0%

2.856 seconds

0

0

0

2. Features

2.1. Functionality of Component Variant: Default in XLG PASS

Result: PASS Time: 1.026 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

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

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

1
waitForComponent(selector)
  • And Should have sample rich text

1
2
assert $(selector).text().trim().startsWith("Heading 1")
report("Should have sample rich text")
  • And Has sample table content

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

1
assert !$("${selector} a").isEmpty()
  • Where: Browser size width: 1920 and height: 1280