created on Fri Nov 08 01:42:39 UTC 2019 by ?

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

12

100.0%

24.362 seconds

0

0

0

2. Features

2.1. Functionality of Component Variant: Default in XS PASS

Result: PASS Time: 1.661 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text1"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Default in XS Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • And Should have simple BR element

1
assert $("$selector div br").size() > 0
  • Where:

2.2. Functionality of Component Variant: Default in SM PASS

Result: PASS Time: 1.631 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text1"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Default in SM Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • And Should have simple BR element

1
assert $("$selector div br").size() > 0
  • Where:

2.3. Functionality of Component Variant: Default in MD PASS

Result: PASS Time: 1.772 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text1"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Default in MD Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • And Should have simple BR element

1
assert $("$selector div br").size() > 0
  • Where:

2.4. Functionality of Component Variant: Default in LG PASS

Result: PASS Time: 1.968 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text1"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Default in LG Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • And Should have simple BR element

1
assert $("$selector div br").size() > 0
  • Where:

2.5. Functionality of Component Variant: Default in XLG PASS

Result: PASS Time: 2.225 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text1"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Default in XLG Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • And Should have simple BR element

1
assert $("$selector div br").size() > 0
  • Where:

2.6. Functionality of Component Variant: Default in XXLG PASS

Result: PASS Time: 2.374 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text1"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Default in XXLG Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • And Should have simple BR element

1
assert $("$selector div br").size() > 0
  • Where:

2.7. Functionality of Component Variant: Simple in XS PASS

Result: PASS Time: 1.593 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text2"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Simple in XS Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • Where:

2.8. Functionality of Component Variant: Simple in SM PASS

Result: PASS Time: 1.642 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text2"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Simple in SM Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • Where:

2.9. Functionality of Component Variant: Simple in MD PASS

Result: PASS Time: 1.722 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text2"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Simple in MD Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • Where:

2.10. Functionality of Component Variant: Simple in LG PASS

Result: PASS Time: 1.908 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text2"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Simple in LG Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • Where:

2.11. Functionality of Component Variant: Simple in XLG PASS

Result: PASS Time: 2.081 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text2"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Simple in XLG Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • Where:

2.12. Functionality of Component Variant: Simple in XXLG PASS

Result: PASS Time: 2.340 seconds

  • Given: >the page hierarchy is created as "Components" > "Content" > "Text"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
2
def selector = "#text2"
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).children().size() == 28
takeScreenshot($(selector).firstElement(), "Should have sample rich text")
Current

Functionality of Component Variant Simple in XXLG Should have sample rich text

  • And Has sample table content

1
assert $("${selector} table").isEmpty() == false
  • And Has sample link

1
assert $("${selector} a").isEmpty() == false
  • Where: