created on Wed Sep 15 01:23:07 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

4

100.0%

5.833 seconds

0

0

0

2. Features

2.1. Functionality of Component Variant: Default in LG PASS

Result: PASS Time: 1.264 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#contentblock1 .form-options-checkbox"
  • 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} #options1").size() == 2
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: Radio Buttons in LG PASS

Result: PASS Time: 1.268 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#contentblock2 .form-options-radio"
  • 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} #options2").size() == 2
takeScreenshot($(selector).firstElement(), "Should have sample content")
Current

Functionality of Component Variant Radio Buttons in LG Should have sample content

  • Where:

2.3. Functionality of Component Variant: Dropdown in LG PASS

Result: PASS Time: 1.234 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#contentblock3 .form-options-drop-down"
  • 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} [name=options3] option").size() == 2
takeScreenshot($(selector).firstElement(), "Should have sample content")
Current

Functionality of Component Variant Dropdown in LG Should have sample content

  • Where:

2.4. Functionality of Component Variant: Multi Dropdown in LG PASS

Result: PASS Time: 1.214 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#contentblock4 .form-options-multi-drop-down"
  • 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} [name=options4] option").size() == 2
takeScreenshot($(selector).firstElement(), "Should have sample content")
Current

Functionality of Component Variant Multi Dropdown in LG Should have sample content

  • Where: