From bc6a19a336509d5e14363feb691cd10bd7b81a44 Mon Sep 17 00:00:00 2001 From: NagappanAlagappan Date: Tue, 8 Nov 2005 12:41:52 +0000 Subject: --- click.moin | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 click.moin diff --git a/click.moin b/click.moin new file mode 100644 index 0000000..7b2bd76 --- /dev/null +++ b/click.moin @@ -0,0 +1,53 @@ +== Syntax == + +click ('', '') + +== Description == + +click on radio button / check box / push button/ combo box/ radio menu item/ toggle button/ radio button. + +== Implementation == + +'''''Radio Button''''' + +If radio button is already in checked state, then this function will uncheck (unset) it. + +If radio button is already in unchecked state, then this function will check (set) it. + +Refer: [http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/radio_button.c radio_button.c] + +'''''Check Box''''' + +If check box is already in checked state, then this function will uncheck (unset) it. + +If check box is already in unchecked state, then this function will check (set) it. + +Refer: [http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/check_box.c check_box.c] + +'''''Push Button''''' + +If push button state is enabled, then click on the object. + +Refer: [http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/push_button.c push_button.c] + +'''''Toggle Button''''' + +Click on the toggle button. + +Refer: [http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/toggle_button.c toggle_button.c] + +'''''Combo Box''''' + +Clicks on combo box, drop down list of combo box will be visible if not already else drop down list of combo box closes. + +Refer: [http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/combo_box.c combo_box.c] + +== Examples == + +Example for push button (With respect to gedit open dialog) + +click ('dlgOpen', 'btnOpen') + +For Check box, Check menu item, on doing this action, the state will be toggled. + +For Radio button, Radio menu item, if they are not already selected, they are selected, otherwise silently ignored. -- cgit v1.2.3 From f8469b2e1a8412a6368bb4acae835a3c9bebb564 Mon Sep 17 00:00:00 2001 From: "127.0.0.1" Date: Sun, 21 Feb 2010 19:22:05 +0000 Subject: converted to 1.6 markup --- click.moin | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/click.moin b/click.moin index 7b2bd76..a3e2aa2 100644 --- a/click.moin +++ b/click.moin @@ -14,7 +14,7 @@ If radio button is already in checked state, then this function will uncheck (un If radio button is already in unchecked state, then this function will check (set) it. -Refer: [http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/radio_button.c radio_button.c] +Refer: [[http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/radio_button.c|radio_button.c]] '''''Check Box''''' @@ -22,25 +22,25 @@ If check box is already in checked state, then this function will uncheck (unset If check box is already in unchecked state, then this function will check (set) it. -Refer: [http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/check_box.c check_box.c] +Refer: [[http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/check_box.c|check_box.c]] '''''Push Button''''' If push button state is enabled, then click on the object. -Refer: [http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/push_button.c push_button.c] +Refer: [[http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/push_button.c|push_button.c]] '''''Toggle Button''''' Click on the toggle button. -Refer: [http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/toggle_button.c toggle_button.c] +Refer: [[http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/toggle_button.c|toggle_button.c]] '''''Combo Box''''' Clicks on combo box, drop down list of combo box will be visible if not already else drop down list of combo box closes. -Refer: [http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/combo_box.c combo_box.c] +Refer: [[http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/combo_box.c|combo_box.c]] == Examples == -- cgit v1.2.3