created on Fri Nov 08 01:19:02 UTC 2019 by ?

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

12

100.0%

23.146 seconds

0

0

0

2. Features

2.1. Functionality of Component in XS PASS

Result: PASS Time: 1.584 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 XS Should have sample rich text

  • Where: Browser size width: 320 and height: 480

2.2. Functionality of Component in SM PASS

Result: PASS Time: 1.545 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 SM Should have sample rich text

  • Where: Browser size width: 640 and height: 480

2.3. Functionality of Component in MD PASS

Result: PASS Time: 1.706 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 MD Should have sample rich text

  • Where: Browser size width: 1024 and height: 768

2.4. Functionality of Component in LG PASS

Result: PASS Time: 1.733 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.5. Functionality of Component in XLG PASS

Result: PASS Time: 1.980 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 XLG Should have sample rich text

  • Where: Browser size width: 1920 and height: 1280

2.6. Functionality of Component in XXLG PASS

Result: PASS Time: 2.151 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 XXLG Should have sample rich text

  • Where: Browser size width: 2560 and height: 1440

2.7. Functionality of Component with Background in XS PASS

Result: PASS Time: 1.617 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 XS Should have sample rich text

  • And Section should have a background image

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

2.8. Functionality of Component with Background in SM PASS

Result: PASS Time: 1.563 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 SM Should have sample rich text

  • And Section should have a background image

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

2.9. Functionality of Component with Background in MD PASS

Result: PASS Time: 1.588 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 MD Should have sample rich text

  • And Section should have a background image

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

2.10. Functionality of Component with Background in LG PASS

Result: PASS Time: 1.749 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

2.11. Functionality of Component with Background in XLG PASS

Result: PASS Time: 2.027 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 XLG Should have sample rich text

  • And Section should have a background image

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

2.12. Functionality of Component with Background in XXLG PASS

Result: PASS Time: 2.195 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 XXLG Should have sample rich text

  • And Section should have a background image

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