created on Fri Nov 08 01:17:31 UTC 2019 by ?

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

12

100.0%

22.283 seconds

0

0

0

2. Features

2.1. Functionality of Component in XS PASS

Result: PASS Time: 1.541 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 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.445 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 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.669 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 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.642 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.5. Functionality of Component in XLG PASS

Result: PASS Time: 1.917 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 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.106 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 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.437 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 XS 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: 320 and height: 480

2.8. Functionality of Component with Background in SM PASS

Result: PASS Time: 1.498 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 SM 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: 640 and height: 480

2.9. Functionality of Component with Background in MD PASS

Result: PASS Time: 1.517 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 MD 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: 1024 and height: 768

2.10. Functionality of Component with Background in LG PASS

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

2.11. Functionality of Component with Background in XLG PASS

Result: PASS Time: 1.928 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 XLG 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: 1920 and height: 1280

2.12. Functionality of Component with Background in XXLG PASS

Result: PASS Time: 2.211 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 XXLG 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: 2560 and height: 1440