created on Thu Aug 12 17:53:19 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

0

100.0%

5.246 seconds

1

0

2

2. Features

2.1. Functionality of Component in LG IGNORED

Result: IGNORED Time: 1.925 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#plainaside"
  • 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() == "Aside Content"
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component in LG 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: 2.220 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

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

1
2
3
setWindowSize(viewport)
waitForAuthorPreviewPage()
takeScreenshot($(selector).firstElement(), "I am on the component showcase page")
Current

Functionality of Component with Background in LG 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() == "Aside 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
| #asidewithbackground
[[[RemoteWebDriver: chrome on LINUX (13b7334604e2b6cfd3853f74d8158456)] -> css selector: #asidewithbackground]]