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

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

12

100.0%

18.309 seconds

0

0

0

2. Features

2.1. Functionality of Component in XS PASS

Result: PASS Time: 1.226 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#plainheader"
  • 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() == "Header Content"
report("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.142 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#plainheader"
  • 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() == "Header Content"
report("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.244 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#plainheader"
  • 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() == "Header Content"
report("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.381 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#plainheader"
  • 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() == "Header Content"
report("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.587 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#plainheader"
  • 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() == "Header Content"
report("Should have sample rich text")
  • Where: Browser size width: 1920 and height: 1280

2.6. Functionality of Component in XXLG PASS

Result: PASS Time: 1.794 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#plainheader"
  • 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() == "Header Content"
report("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.143 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#headerwithbackground"
  • 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() == "Header Content with Background"
  • 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.198 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#headerwithbackground"
  • 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() == "Header Content with Background"
  • 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.268 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#headerwithbackground"
  • 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() == "Header Content with Background"
  • 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.446 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#headerwithbackground"
  • 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() == "Header 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

2.11. Functionality of Component with Background in XLG PASS

Result: PASS Time: 1.550 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#headerwithbackground"
  • 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() == "Header Content with Background"
  • 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: 1.825 seconds

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

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#headerwithbackground"
  • 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() == "Header Content with Background"
  • And Section should have a background image

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