1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
|
# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
from uitest.framework import UITestCase
from uitest.uihelper.common import get_state_as_dict
from uitest.uihelper.common import select_pos
from uitest.uihelper.calc import enter_text_to_cell
from libreoffice.calc.document import get_sheet_from_doc
from libreoffice.calc.conditional_format import get_conditional_format_from_sheet
from uitest.debug import sleep
from libreoffice.calc.document import get_cell_by_position
from libreoffice.uno.propertyvalue import mkPropertyValues
class formatCell(UITestCase):
def test_format_cell_numbers_tab(self):
#numberingformatpage.ui
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
#select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "0") #tab Numbers
xliststore1 = xDialog.getChild("categorylb") #1st list / Category
xliststore2 = xDialog.getChild("formatlb") #2nd list / Format
xdecimalsed = xDialog.getChild("decimalsed")
xleadzerosed = xDialog.getChild("leadzerosed")
xnegnumred = xDialog.getChild("negnumred")
xthousands = xDialog.getChild("thousands")
xlanguagelb = xDialog.getChild("languagelb")
xformatted = xDialog.getChild("formatted")
#language
props3 = {"TEXT": "English (USA)"}
actionProps3 = mkPropertyValues(props3)
xlanguagelb.executeAction("SELECT", actionProps3)
#set Number
props = {"TEXT": "Number"}
actionProps = mkPropertyValues(props)
xliststore1.executeAction("SELECT", actionProps)
#set Standard
props2 = {"TEXT": "Standard"}
actionProps2 = mkPropertyValues(props2)
xliststore2.executeAction("SELECT", actionProps2)
#other properties
xdecimalsed.executeAction("UP", tuple())
xleadzerosed.executeAction("UP", tuple())
xnegnumred.executeAction("CLICK", tuple())
xthousands.executeAction("CLICK", tuple())
#format #,#00.0;[RED]-#,#00.0
self.assertEqual(get_state_as_dict(xformatted)["Text"], "#,#00.0;[RED]-#,#00.0")
#save
xOk = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOk)
#verify
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "0") #tab Numbers
xliststore1 = xDialog.getChild("categorylb") #1st list / Category
xliststore2 = xDialog.getChild("formatlb") #2nd list / Format
xdecimalsed = xDialog.getChild("decimalsed")
xleadzerosed = xDialog.getChild("leadzerosed")
xnegnumred = xDialog.getChild("negnumred")
xthousands = xDialog.getChild("thousands")
xlanguagelb = xDialog.getChild("languagelb")
xformatted = xDialog.getChild("formatted")
self.assertEqual(get_state_as_dict(xliststore1)["SelectEntryText"], "Number")
self.assertEqual(get_state_as_dict(xlanguagelb)["SelectEntryText"], "English (USA)")
self.assertEqual(get_state_as_dict(xdecimalsed)["Text"], "1")
self.assertEqual(get_state_as_dict(xleadzerosed)["Text"], "2")
self.assertEqual(get_state_as_dict(xnegnumred)["Selected"], "true")
self.assertEqual(get_state_as_dict(xthousands)["Selected"], "true")
self.assertEqual(get_state_as_dict(xformatted)["Text"], "#,#00.0;[RED]-#,#00.0")
xOk = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOk)
self.ui_test.close_doc()
def test_format_cell_font_tab(self):
#numberingformatpage.ui
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
#select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "1") #tab Font
xSizeFont = xDialog.getChild("westsizelb-cjk")
xSizeFontEast = xDialog.getChild("eastsizelb")
xSizeFontCTL = xDialog.getChild("ctlsizelb")
xLangFont = xDialog.getChild("westlanglb-cjk")
xLangFontEast = xDialog.getChild("eastlanglb")
xLangFontCTL = xDialog.getChild("ctllanglb")
xSizeFont.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xSizeFont.executeAction("TYPE", mkPropertyValues({"TEXT":"18"})) #set font size 18
xSizeFontEast.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xSizeFontEast.executeAction("TYPE", mkPropertyValues({"TEXT":"18"})) #set font size 18
xSizeFontCTL.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xSizeFontCTL.executeAction("TYPE", mkPropertyValues({"TEXT":"18"})) #set font size 18
select_pos(xLangFont, "0")
select_pos(xLangFontEast, "0")
select_pos(xLangFontCTL, "0")
xOK = xDialog.getChild("ok")
xOK.executeAction("CLICK", tuple())
#Verify - select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "1") #tab Font
xSizeFont = xDialog.getChild("westsizelb-cjk")
xSizeFontEast = xDialog.getChild("eastsizelb")
xSizeFontCTL = xDialog.getChild("ctlsizelb")
xLangFont = xDialog.getChild("westlanglb-cjk")
xLangFontEast = xDialog.getChild("eastlanglb")
xLangFontCTL = xDialog.getChild("ctllanglb")
self.assertEqual(get_state_as_dict(xSizeFont)["Text"], "18 pt")
self.assertEqual(get_state_as_dict(xSizeFontEast)["Text"], "18 pt")
self.assertEqual(get_state_as_dict(xSizeFontCTL)["Text"], "18 pt") #check font size
self.assertEqual(get_state_as_dict(xLangFont)["Text"], "[None]")
self.assertEqual(get_state_as_dict(xLangFontEast)["SelectEntryText"], "[None]")
self.assertEqual(get_state_as_dict(xLangFontCTL)["SelectEntryText"], "[None]")
xCanc = xDialog.getChild("cancel")
self.ui_test.close_dialog_through_button(xCanc)
self.ui_test.close_doc()
def test_format_cell_font_effects_tab(self):
#numberingformatpage.ui
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
#select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "2") #tab Font Effects
xRelief = xDialog.getChild("relieflb")
xOverline = xDialog.getChild("overlinelb")
xStrikeout = xDialog.getChild("strikeoutlb")
xUnderline = xDialog.getChild("underlinelb")
xEmphasis = xDialog.getChild("emphasislb")
xPosition = xDialog.getChild("positionlb")
select_pos(xRelief, "1")
select_pos(xOverline, "1")
select_pos(xStrikeout, "1")
select_pos(xUnderline, "1")
select_pos(xEmphasis, "1")
select_pos(xPosition, "1")
xOK = xDialog.getChild("ok")
xOK.executeAction("CLICK", tuple())
#Verify- select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "2")
xRelief = xDialog.getChild("relieflb")
xOverline = xDialog.getChild("overlinelb")
xStrikeout = xDialog.getChild("strikeoutlb")
xUnderline = xDialog.getChild("underlinelb")
xEmphasis = xDialog.getChild("emphasislb")
xPosition = xDialog.getChild("positionlb")
self.assertEqual(get_state_as_dict(xRelief)["SelectEntryText"], "Embossed")
self.assertEqual(get_state_as_dict(xOverline)["SelectEntryText"], "Single")
self.assertEqual(get_state_as_dict(xStrikeout)["SelectEntryText"], "Single")
self.assertEqual(get_state_as_dict(xUnderline)["SelectEntryText"], "Single")
self.assertEqual(get_state_as_dict(xEmphasis)["SelectEntryText"], "Dot")
self.assertEqual(get_state_as_dict(xPosition)["SelectEntryText"], "Below text")
xCanc = xDialog.getChild("cancel")
self.ui_test.close_dialog_through_button(xCanc)
self.ui_test.close_doc()
def test_format_cell_alignment_tab(self):
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
#select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "3") #tab Alignment
comboboxHorzAlign = xDialog.getChild("comboboxHorzAlign")
xspinIndentFrom = xDialog.getChild("spinIndentFrom")
xcomboboxVertAlign = xDialog.getChild("comboboxVertAlign")
xcheckVertStack = xDialog.getChild("checkVertStack")
xcheckWrapTextAuto = xDialog.getChild("checkWrapTextAuto")
xcheckHyphActive = xDialog.getChild("checkHyphActive")
xcomboTextDirBox = xDialog.getChild("comboTextDirBox")
props = {"TEXT": "Left"}
actionProps = mkPropertyValues(props)
comboboxHorzAlign.executeAction("SELECT", actionProps)
xspinIndentFrom.executeAction("UP", tuple())
indentVal = get_state_as_dict(xspinIndentFrom)["Text"]
props2 = {"TEXT": "Top"}
actionProps2 = mkPropertyValues(props2)
xcomboboxVertAlign.executeAction("SELECT", actionProps2)
xcheckVertStack.executeAction("CLICK", tuple())
xcheckWrapTextAuto.executeAction("CLICK", tuple())
xcheckHyphActive.executeAction("CLICK", tuple())
props3 = {"TEXT": "Left-to-right (LTR)"}
actionProps3 = mkPropertyValues(props3)
xcomboTextDirBox.executeAction("SELECT", actionProps3)
xOK = xDialog.getChild("ok")
xOK.executeAction("CLICK", tuple())
#Verify- select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "3")
comboboxHorzAlign = xDialog.getChild("comboboxHorzAlign")
xspinIndentFrom = xDialog.getChild("spinIndentFrom")
xcomboboxVertAlign = xDialog.getChild("comboboxVertAlign")
xcheckVertStack = xDialog.getChild("checkVertStack")
xcheckWrapTextAuto = xDialog.getChild("checkWrapTextAuto")
xcheckHyphActive = xDialog.getChild("checkHyphActive")
xcomboTextDirBox = xDialog.getChild("comboTextDirBox")
self.assertEqual(get_state_as_dict(comboboxHorzAlign)["SelectEntryText"], "Left")
self.assertEqual(get_state_as_dict(xspinIndentFrom)["Text"] == indentVal, True)
self.assertEqual(get_state_as_dict(xcomboboxVertAlign)["SelectEntryText"], "Top")
self.assertEqual(get_state_as_dict(xcheckVertStack)["Selected"], "true")
self.assertEqual(get_state_as_dict(xcheckWrapTextAuto)["Selected"], "true")
self.assertEqual(get_state_as_dict(xcheckHyphActive)["Selected"], "true")
self.assertEqual(get_state_as_dict(xcomboTextDirBox)["SelectEntryText"], "Left-to-right (LTR)")
xOK = xDialog.getChild("ok")
xOK.executeAction("CLICK", tuple())
self.ui_test.close_doc()
def test_format_cell_asian_typography_tab(self):
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
#select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "4") #tab Asian typography
xcheckForbidList = xDialog.getChild("checkForbidList")
xcheckForbidList.executeAction("CLICK", tuple())
xOK = xDialog.getChild("ok")
xOK.executeAction("CLICK", tuple())
#Verify- select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "4")
xcheckForbidList = xDialog.getChild("checkForbidList")
self.assertEqual(get_state_as_dict(xcheckForbidList)["Selected"], "true")
xOK = xDialog.getChild("ok")
xOK.executeAction("CLICK", tuple())
self.ui_test.close_doc()
def test_format_cell_borders_tab(self):
#borderpage.ui
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
#set points pt measurement
#Make sure that tools-options-LibreOffice Calc-General-Point
self.ui_test.execute_dialog_through_command(".uno:OptionsTreeDialog") #optionsdialog
xDialogOpt = self.xUITest.getTopFocusWindow()
xPages = xDialogOpt.getChild("pages")
xWriterEntry = xPages.getChild('3') # Calc
xWriterEntry.executeAction("EXPAND", tuple())
xWriterGeneralEntry = xWriterEntry.getChild('0')
xWriterGeneralEntry.executeAction("SELECT", tuple()) #General /point
xunitlb = xDialogOpt.getChild("unitlb")
props = {"TEXT": "Point"}
actionProps = mkPropertyValues(props)
xunitlb.executeAction("SELECT", actionProps)
xOKBtn = xDialogOpt.getChild("ok")
self.ui_test.close_dialog_through_button(xOKBtn)
#select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "5") #tab Borders
xsync = xDialog.getChild("sync")
xleftmf = xDialog.getChild("leftmf")
xrightmf = xDialog.getChild("rightmf")
xtopmf = xDialog.getChild("topmf")
xbottommf = xDialog.getChild("bottommf")
xsync.executeAction("CLICK", tuple()) #uncheck Synchronize
xleftmf.executeAction("UP", tuple())
xrightmf.executeAction("UP", tuple())
xrightmf.executeAction("UP", tuple())
xtopmf.executeAction("UP", tuple())
xtopmf.executeAction("UP", tuple())
xtopmf.executeAction("UP", tuple())
xbottommf.executeAction("UP", tuple())
xbottommf.executeAction("UP", tuple())
xbottommf.executeAction("UP", tuple())
xbottommf.executeAction("UP", tuple())
leftVal = get_state_as_dict(xleftmf)["Text"]
rightVal = get_state_as_dict(xrightmf)["Text"]
topVal = get_state_as_dict(xtopmf)["Text"]
bottomVal = get_state_as_dict(xbottommf)["Text"]
xOKBtn = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOKBtn)
# Verify select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "5") #tab Borders
xsync = xDialog.getChild("sync")
xleftmf = xDialog.getChild("leftmf")
xrightmf = xDialog.getChild("rightmf")
xtopmf = xDialog.getChild("topmf")
xbottommf = xDialog.getChild("bottommf")
self.assertEqual(get_state_as_dict(xsync)["Selected"], "false")
self.assertEqual(get_state_as_dict(xleftmf)["Text"] == leftVal, True)
self.assertEqual(get_state_as_dict(xrightmf)["Text"] == rightVal, True)
self.assertEqual(get_state_as_dict(xtopmf)["Text"] == topVal, True)
self.assertEqual(get_state_as_dict(xbottommf)["Text"] == bottomVal, True)
xOKBtn = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOKBtn)
self.ui_test.close_doc()
def test_format_cell_cell_protection_tab(self):
#cellprotectionpage.ui
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
#select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "6") #tab Cell protection
xcheckHideFormula = xDialog.getChild("checkHideFormula")
xcheckHideAll = xDialog.getChild("checkHideAll")
xcheckHidePrinting = xDialog.getChild("checkHidePrinting")
xcheckHideFormula.executeAction("CLICK", tuple())
xcheckHideAll.executeAction("CLICK", tuple())
xcheckHidePrinting.executeAction("CLICK", tuple())
xOKBtn = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOKBtn)
# Verify select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "6") #tab Borders
xcheckHideFormula = xDialog.getChild("checkHideFormula")
xcheckHideAll = xDialog.getChild("checkHideAll")
xcheckHidePrinting = xDialog.getChild("checkHidePrinting")
self.assertEqual(get_state_as_dict(xcheckHideFormula)["Selected"], "false")
self.assertEqual(get_state_as_dict(xcheckHideAll)["Selected"], "false")
self.assertEqual(get_state_as_dict(xcheckHidePrinting)["Selected"], "false")
xOKBtn = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOKBtn)
self.ui_test.close_doc()
def test_tdf130762(self):
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
#select cell A1
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
#format - cell
self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog")
xDialog = self.xUITest.getTopFocusWindow()
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "3") #tab Alignment
xspinDegrees = xDialog.getChild("spinDegrees")
self.assertEqual(get_state_as_dict(xspinDegrees)["Text"].replace('°', ''), "0")
xspinDegrees.executeAction("DOWN", tuple())
self.assertEqual(get_state_as_dict(xspinDegrees)["Text"].replace('°', ''), "355")
xspinDegrees.executeAction("UP", tuple())
self.assertEqual(get_state_as_dict(xspinDegrees)["Text"].replace('°', ''), "0")
xOKBtn = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOKBtn)
self.ui_test.close_doc()
# vim: set shiftwidth=4 softtabstop=4 expandtab:
|