X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/34211d2356367e21aa8f624caa7b17ee4b8ec4ac..1d91e75c53e7da5bf2c1b334f5aeecf241dc5ec4:/t/old/selenium/testscripts/system/begin/S003AddLanguage.t diff --git a/t/old/selenium/testscripts/system/begin/S003AddLanguage.t b/t/old/selenium/testscripts/system/begin/S003AddLanguage.t new file mode 100644 index 000000000..4d745b87b --- /dev/null +++ b/t/old/selenium/testscripts/system/begin/S003AddLanguage.t @@ -0,0 +1,31 @@ +if(!defined $sel) { + require "t/selenium/AllTests.t"; + init_server("singlefileonly",$0); + exit(0); +} +diag("Add languages"); +SKIP: { + start_login(); + + $sel->click_ok("link=Sprache hinzufügen"); + $sel->wait_for_page_to_load($lxtest->{timeout}); + $sel->select_frame_ok("main_window"); + $sel->type_ok("description", "elbisch"); + $sel->type_ok("template_code", "elb"); + $sel->type_ok("article_code", "elb"); + $sel->select_ok("output_numberformat", "label=1.000,00"); + $sel->select_ok("output_dateformat", "label=yyyy-mm-dd"); + $sel->click_ok("action"); + $sel->wait_for_page_to_load($lxtest->{timeout}); + + ### Folgende Zeilen sind notwendig , um später herausfinden zu können, welche Sprache gelöscht werden kann. + use DBI; + $lxtest->{dsn} = 'dbi:Pg:dbname=' . $lxtest->{db} . ';host=' . $lxtest->{dbhost} . ';port=' . $lxtest->{dbport}; + my $dbh = DBI->connect( $lxtest->{dsn}, $lxtest->{dbuser}, $lxtest->{dbpasswd} ) or die "Cannot connect to database!\n $DBI::errstr"; + my $sth = $dbh->prepare("SELECT id FROM language WHERE description ILIKE 'elbisch'") or die "Error while preparing sql statement!\n $DBI::errstr\n"; + $sth->execute() or die "Error while excecuting sql statement!\n $DBI::errstr"; + $lxtest->{lang_id} = $sth->fetchrow_array() or die "Nothing to fetch!\n$DBI::errstr"; + $sth->finish(); + $dbh->disconnect(); +}; +1; \ No newline at end of file