#=============================================================================================
# @TITLE			Start of Mozilla 1.3 - Call logon mask.
#
# @NUMBER			WDBM_FKT_01005
#
# @DESCRIPTION		Starting the Netscape Navigator 4.7 and setting the path to
# @								"http://p56987.bea.sap-ag.de/webdbm".
#
# @EXP_RESULT		The logon mask for entering the "websql" application shows up.
#
# @REQUIREMENTS		Netscape is installed. There is a connection to the database manager.
#=============================================================================================

#=============================================================================================
# @STEP 1			Starting Netscape Navigator.
#=============================================================================================
web_browser_invoke(NETSCAPE6, url_waadmin);
wait (60);

if (win_exists("Prompt", 1) == 0) {

	set_window ("Prompt", 1);
	edit_set ("edit", "admin");							# admin
	password_edit_set("edit_1", "662b3e88b62a19dc");	# init
	button_press ("OK");
}
#=============================================================================================
# @STEP 2			Readout the window name.
#=============================================================================================
if (win_exists ("Browser Main Window", 0) == 0) {

	tl_step ("Browser Main Window", "0", "Browser is open");
} else {
	tl_step ("Browser Main Window", "1", "Browser is not open");
}

public browser_window_name = "Browser Main Window";
