created on Thu Aug 12 17:56:48 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

0

100.0%

4.988 seconds

1

0

2

2. Features

2.1. Functionality of Component in LG IGNORED

Result: IGNORED Time: 1.774 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#plainfooter"
  • 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() == "Footer 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.875 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#footerwithbackground"
  • 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() == "Footer 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
| #footerwithbackground
[[[RemoteWebDriver: chrome on LINUX (13b7334604e2b6cfd3853f74d8158456)] -> css selector: #footerwithbackground]]