@@ -12,7 +12,6 @@ import { disconnect } from './scenarios/disconnect'
1212import { publishTopic } from './scenarios/publishTopic'
1313import { SceneBuilder } from './SceneBuilder'
1414import { showAdvancedConnectionSettings } from './scenarios/showAdvancedConnectionSettings'
15- import { showJsonFormatting } from './scenarios/showJsonFormatting'
1615import { showJsonPreview } from './scenarios/showJsonPreview'
1716import { showMenu } from './scenarios/showMenu'
1817import { showNumericPlot } from './scenarios/showNumericPlot'
@@ -59,11 +58,11 @@ async function doStuff() {
5958 const scenes = new SceneBuilder ( )
6059 await scenes . record ( 'connect' , async ( ) => {
6160 await connectTo ( '127.0.0.1' , browser )
62- await sleep ( 2000 )
61+ await sleep ( 1000 )
6362 } )
6463
6564 await scenes . record ( 'numeric_plots' , async ( ) => {
66- await showText ( 'Plot topic history' , 2000 , browser )
65+ await showText ( 'Plot topic history' , 1500 , browser )
6766 await showNumericPlot ( browser )
6867 await sleep ( 2000 )
6968 } )
@@ -80,20 +79,14 @@ async function doStuff() {
8079 } )
8180
8281 await scenes . record ( 'publish_topic' , async ( ) => {
83- await showText ( 'Publish topics' , 2000 , browser , 'top' )
82+ await showText ( 'Publish topics' , 1500 , browser , 'top' )
8483 await clickOnHistory ( browser )
8584 await publishTopic ( browser )
8685 await sleep ( 1000 )
8786 } )
8887
89- await scenes . record ( 'json_formatting_publish' , async ( ) => {
90- await showText ( 'Write JSON with ease' , 2000 , browser , 'top' )
91- await showJsonFormatting ( browser )
92- await sleep ( 1000 )
93- } )
94-
9588 await scenes . record ( 'clipboard' , async ( ) => {
96- await showText ( 'Copy to Clipboard' , 2000 , browser )
89+ await showText ( 'Copy to Clipboard' , 1500 , browser )
9790 await copyTopicToClipboard ( browser )
9891 await hideText ( browser )
9992 await copyValueToClipboard ( browser )
@@ -112,25 +105,25 @@ async function doStuff() {
112105
113106 await scenes . record ( 'delete_retained_topics' , async ( ) => {
114107 await hideText ( browser )
115- await showText ( 'Delete retained topics' , 0 , browser )
108+ await showText ( 'Delete retained topics' , 5000 , browser )
116109 await clearOldTopics ( browser )
117110 await hideText ( browser )
118111 } )
119112
120113 await scenes . record ( 'settings' , async ( ) => {
121- await showText ( 'Display Options ' , 2000 , browser )
114+ await showText ( 'Settings ' , 1500 , browser )
122115 await showMenu ( browser )
123116 } )
124117
125118 await scenes . record ( 'customize_subscriptions' , async ( ) => {
126119 await sleep ( 2000 )
127120 await disconnect ( browser )
128- await showText ( 'Customize Subscriptions' , 1000 , browser , 'top' )
121+ await showText ( 'Customize Subscriptions' , 1500 , browser , 'top' )
129122 await showAdvancedConnectionSettings ( browser )
130123 } )
131124
132125 await scenes . record ( 'keyboard_shortcuts' , async ( ) => {
133- await showText ( 'Keyboard shortcuts' , 1750 , browser , 'middle' )
126+ await showText ( 'Keyboard shortcuts' , 1500 , browser , 'middle' )
134127 await sleep ( 1750 )
135128 await showZoomLevel ( browser )
136129 } )
0 commit comments