Kaydet (Commit) e8b6bcc6 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

uitest: add initial version for calc element demo

Change-Id: I09b724cb80d75b17fd3ad5f3736245f9fca1d17a
üst 9d2fa0bf
......@@ -183,4 +183,37 @@ def activate_chart(xContext):
ui_test.close_doc()
def select_chart_element(xContext):
xUITest = xContext.ServiceManager.createInstanceWithContext(
"org.libreoffice.uitest.UITest", xContext)
ui_test = UITest(xUITest, xContext)
ui_test.create_doc_in_start_center("calc")
fill_spreadsheet(xUITest)
xCalcDoc = xUITest.getTopFocusWindow()
xGridWindow = xCalcDoc.getChild("grid_window")
ui_test.execute_dialog_through_command(".uno:InsertObjectChart")
xChartDlg = xUITest.getTopFocusWindow()
xNextBtn = xChartDlg.getChild("finish")
xNextBtn.executeAction("CLICK", tuple())
xGridWindow.executeAction("DESELECT", mkPropertyValues({"OBJECT": ""}))
time.sleep(2)
xGridWindow.executeAction("SELECT", mkPropertyValues({"OBJECT": "Object 1"}))
xGridWindow.executeAction("ACTIVATE", tuple())
time.sleep(2)
xCalcDoc = xUITest.getTopFocusWindow()
print(xCalcDoc.getChildren())
time.sleep(1)
ui_test.close_doc()
# vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment