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

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

0

100.0%

5.250 seconds

1

0

2

2. Features

2.1. Functionality of Component in LG IGNORED

Result: IGNORED Time: 2.071 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#plainnavbar"
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
def component = waitForComponent(selector)
  • And Should have sample rich text

1
2
assert $(selector + " .text[component]").text().trim() == "Navbar 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.154 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#navbarwithbackground"
def selectorContainer = "#contentblock2 .contents"
  • 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() == "Navbar Content with Background"
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component with Background in LG Should have sample rich text

  • 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
| #navbarwithbackground
[[[RemoteWebDriver: chrome on LINUX (13b7334604e2b6cfd3853f74d8158456)] -> css selector: #navbarwithbackground]]