summaryrefslogtreecommitdiff
path: root/testautomation/framework/optional/includes/help_bookmarks.inc
diff options
context:
space:
mode:
Diffstat (limited to 'testautomation/framework/optional/includes/help_bookmarks.inc')
-rw-r--r--testautomation/framework/optional/includes/help_bookmarks.inc36
1 files changed, 20 insertions, 16 deletions
diff --git a/testautomation/framework/optional/includes/help_bookmarks.inc b/testautomation/framework/optional/includes/help_bookmarks.inc
index bfa2384c8eca..c4aebad1af9d 100644
--- a/testautomation/framework/optional/includes/help_bookmarks.inc
+++ b/testautomation/framework/optional/includes/help_bookmarks.inc
@@ -155,23 +155,27 @@ testcase tHelpBookmarks
printlog( "Verify that the renamed bookmark still exists")
Kontext "BookmarksPage"
- Bookmarks.select( 1 )
- cStringBookmark = Bookmarks.getSelText()
- if ( cStringBookmark = MYBOOKMARK ) then
- printlog( "The bookmark has the correct name")
- else
- warnlog( "Incorrect name displayed in bookmarks list")
- endif
-
- printlog( "Delete the Bookmark (using context menu)")
- hUseBookmarksContextMenu( "delete")
-
- printlog( "verify that the bookmark has been deleted (none left)")
- kontext "Bookmarks"
- if ( bookmarks.getItemCount = 0 ) then
- printlog( "Bookmark has been deleted")
+ if ( Bookmarks.getItemCount() > 0 ) then
+ Bookmarks.select( 1 )
+ cStringBookmark = Bookmarks.getSelText()
+ if ( cStringBookmark = MYBOOKMARK ) then
+ printlog( "The bookmark has the correct name")
+ else
+ warnlog( "Incorrect name displayed in bookmarks list")
+ endif
+
+ printlog( "Delete the Bookmark (using context menu)")
+ hUseBookmarksContextMenu( "delete")
+
+ printlog( "verify that the bookmark has been deleted (none left)")
+ kontext "Bookmarks"
+ if ( bookmarks.getItemCount = 0 ) then
+ printlog( "Bookmark has been deleted")
+ else
+ warnlog( "There are bookmarks left over, please check")
+ endif
else
- warnlog( "There are bookmarks left over, please check")
+ warnlog( "Bookmarks are lost on program restart")
endif
printlog( "Close the help")