created on Wed Sep 15 01:26:34 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

0

100.0%

3.700 seconds

1

0

2

2. Features

2.1. Functionality of Component in LG IGNORED

Result: IGNORED Time: 1.430 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: 1.535 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 (344ae6bde7271fdb2bbbc1d742ebe779)] -> css selector: #navbarwithbackground]]