This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
    | Group | Delay in seconds | |
|---|---|---|
| Scheduled Events | 100000 | |
| Executed Events | 13569 | |
| Maximum | 1633 | |
| Minimum | 485 | |
| Average | 1053 | |
| Median | 1052 | |
| Percentile 0.99 | 1558 | |
| Percentile 0.95 | 1468 | |
| Percentile 0.90 | 1402 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
    | Group | Duration in ms | |
|---|---|---|
| Average | 233 | |
| Median | 200 | |
| Percentile 0.99 | 800 | |
| Percentile 0.95 | 600 | |
| Percentile 0.90 | 500 | |
| Percentile 0.50 | 200 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | solarSystemId,x,y,z | |
| 30000001,-8.85107925999806e16,4.23694439668789e16,-4.45135253464797e16 | |
| 30000002,-1.03300968263126e17,4.17075035682699e16,-2.98563041297951e16 | |
| 30000003,-9.11741411330753e16,4.39382274862472e16,-5.64828243833399e16 | |
| 30000004,-9.36759263521789e16,5.06042449623289e16,-2.84035291069217e16 | |
| 30000005,-9.47821579619976e16,4.31262473529033e16,-3.1896707679918e16 | |
| 30000006,-8.47921511388562e16,5.23134557981793e16,-5.70739345298823e16 | |
| 30000007,-9.03675090131102e16,5.34477009309433e16,-4.90403990377699e16 | |
| 30000008,-9.15761035363885e16,5.73328027393277e16,-5.52550579645263e16 | |
| 30000009,-8.40947311402152e16,6.92059288041607e16,-7.52260521388288e16 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | constellationId,x,y,z,holder | |
| 20000001,-9.40465597009913e16,4.95201531537988e16,-4.2738731818402e16,0 | |
| 20000002,-7.91812708173142e16,5.97217660235551e16,-8.57675636213701e16,0 | |
| 20000003,-6.65448343276821e16,3.9477217750414e16,-1.02442842021202e17,0 | |
| 20000004,-7.07428117984546e16,4.53212032360566e16,-4.37505045069673e16,0 | |
| 20000005,-7.70595651146762e16,2.7128553877044e16,-2.64233605110287e16,0 | |
| 20000006,-6.03362539807169e16,4.13207172607966e16,-7.30459516090312e16,0 | |
| 20000007,-8.13872673841422e16,3.57956293900121e16,-9.31530360779941e16,0 | |
| 20000008,-8.07437950097783e16,3.82831626560767e16,-6.48118413801529e16,0 | |
| 20000009,-7.0591121348561e16,6.77961387574723e16,-5.95870161592701e16,0 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
    | Amount | Loading duration in ms | Batching duration in ms | Total duration in ms | |
|---|---|---|---|---|
| 1000 | 95 | 246 | 342 | |
| 5000 | 215 | 1271 | 1489 | |
| 10000 | 515 | 2534 | 3055 | |
| 50000 | 1868 | 10991 | 12886 | |
| 100000 | 3963 | 23383 | 27459 | |
| 250000 | 10279 | 51846 | 62300 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /// <reference types="Cypress" /> | |
| context('Actions', () => { | |
| it('should fill out creditcard', () => { | |
| cy.getWithinIframe('[name="cardnumber"]').type('4242424242424242'); | |
| cy.getWithinIframe('[name="exp-date"]').type('1232'); | |
| cy.getWithinIframe('[name="cvc"]').type('987'); | |
| cy.getWithinIframe('[name="postal"]').type('12345'); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Cypress.Commands.add( | |
| 'iframeLoaded', | |
| {prevSubject: 'element'}, | |
| ($iframe) => { | |
| const contentWindow = $iframe.prop('contentWindow'); | |
| return new Promise(resolve => { | |
| if ( | |
| contentWindow && | |
| contentWindow.document.readyState === 'complete' | |
| ) { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | cy.get('iframe') | |
| .iframeLoaded() | |
| .its('document') | |
| .getInDocument('button') | |
| .trigger('click') | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "objects": [ | |
| { | |
| "output": { | |
| "ref": "DDBDestinationTable" | |
| }, | |
| "input": { | |
| "ref": "S3InputDataNode" | |
| }, | |
| "maximumRetries": "2", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "objects": [ | |
| { | |
| "output": { | |
| "ref": "DDBDestinationTable" | |
| }, | |
| "input": { | |
| "ref": "S3InputDataNode" | |
| }, | |
| "maximumRetries": "2", |