summaryrefslogtreecommitdiff
path: root/testautomation/framework/optional/includes/basic_formcontrols.inc
diff options
context:
space:
mode:
Diffstat (limited to 'testautomation/framework/optional/includes/basic_formcontrols.inc')
-rwxr-xr-xtestautomation/framework/optional/includes/basic_formcontrols.inc16
1 files changed, 10 insertions, 6 deletions
diff --git a/testautomation/framework/optional/includes/basic_formcontrols.inc b/testautomation/framework/optional/includes/basic_formcontrols.inc
index 5d7ae8b7045c..78f4002670d8 100755
--- a/testautomation/framework/optional/includes/basic_formcontrols.inc
+++ b/testautomation/framework/optional/includes/basic_formcontrols.inc
@@ -192,12 +192,16 @@ testcase tAllControlsOnDialog( cMajor as string )
'///+<li>Select every control, open its properties and verify its name, close properties</li>
for iCurrentControl = 1 to ICONTROLCOUNT
-
- hSelectControl( iCurrentControl )
- hOpenPropertyBrowser()
- sCurrentControl = lsControlNames( iCurrentControl )
- hPBGetControlName( sCurrentControl )
- hClosePropertyBrowser()
+
+ if ( instr( gtSysName, "Solaris" ) > 0 ) then
+ qaerrorlog( "Skipping frame control on Solaris" )
+ else
+ hSelectControl( iCurrentControl )
+ hOpenPropertyBrowser()
+ sCurrentControl = lsControlNames( iCurrentControl )
+ hPBGetControlName( sCurrentControl )
+ hClosePropertyBrowser()
+ endif
next iCurrentControl