created on Thu Aug 12 17:57:06 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

0

100.0%

4.799 seconds

1

0

2

2. Features

2.1. Functionality of Component in LG IGNORED

Result: IGNORED Time: 1.711 seconds

  • Given: >the page hierarchy is created as "Components" > "Layout" > "Header"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#plainheader"
  • 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 rich text

1
2
assert $(selector + " .text[component]").text().trim() == "Header Content"
report("Should have sample rich text")
  • Where: Browser size width: 1366 and height: 1024

2.2. Functionality of Component with Background in LG FAILURE

Result: FAILURE Time: 1.866 seconds

  • Given: >the page hierarchy is created as "Components" > "Layout" > "Header"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

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

1
2
3
setWindowSize(viewport)
waitForAuthorPreviewPage()
report("I am on the component showcase page")
  • Then The component should be on the page

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

1
assert $(selector + " .text[component]").text().trim() == "Header Content with Background"
  • And Section should have a background image

1
assert $(selector).css("background-image").contains(".png")
  • Where: Browser size width: 1366 and height: 1024

The following problems occurred:
Condition not satisfied:

$(selector).css("background-image").contains(".png")
| |         |                       |
| |         none                    false
| #headerwithbackground
[[[RemoteWebDriver: chrome on LINUX (13b7334604e2b6cfd3853f74d8158456)] -> css selector: #headerwithbackground]]