Ticket #537: SaveConfig_doesnt_save.amc

File SaveConfig_doesnt_save.amc, 675 bytes (added by westram, 11 years ago)
Line 
1#!/usr/bin/perl
2use strict;
3use warnings;
4
5use lib "$ENV{'ARBHOME'}/lib/";
6use ARB;
7
8my $gb_main = ARB::open(":","r");
9if (not $gb_main) {
10  my $error = ARB::await_error();
11  die "$error";
12}
13
14# recording started @ Wed May 14 11:19:03 2014
15BIO::remote_action($gb_main,'ARB_NT','ARB_NT/EDIT_SEQUENCES');
16BIO::remote_action($gb_main,'ARB_NT','old_arb_edit4');
17BIO::remote_action($gb_main,'ARB_EDIT4','save_config_as');
18BIO::remote_awar($gb_main,'ARB_EDIT4','tmp/edit4/configuration','bla');
19BIO::remote_action($gb_main,'ARB_EDIT4','SAVE_CONFIGURATION/SAVE');
20# BIO::remote_action($gb_main,'ARB_NT','macros');
21# recording stopped @ Wed May 14 11:19:44 2014
22ARB::close($gb_main);