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

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

2

100.0%

7.954 seconds

0

0

0

2. Features

2.1. Event List: Default variant using Default badge in LG PASS

Result: PASS Time: 3.458 seconds

  • Given: >the page hierarchy is created as "Components" > "Lists" > "Event List"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#eventlist1"
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
2
def component = waitForComponent(selector)
takeScreenshot($(selector).firstElement(), "The component should be on the page")
Current

Event List Default variant using Default badge in LG The component should be on the page

  • And Has five list items

1
assert $("${selector} li").size() == 5
  • Where: Browser size width: 1366 and height: 1024

2.2. Event List: Default with ICS Feed Enabled in LG PASS

Result: PASS Time: 3.454 seconds

  • Given: >the page hierarchy is created as "Components" > "Lists" > "Event List"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

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

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

1
2
def component = waitForComponent(selector)
takeScreenshot($(selector).firstElement(), "The component should be on the page")
Current

Event List Default with ICS Feed Enabled in LG The component should be on the page

  • And Has five list items

1
assert $("${selector} li").size() == 5
  • Where: Browser size width: 1366 and height: 1024