diff options
author | Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de> | 2023-03-06 09:55:12 +0100 |
---|---|---|
committer | Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de> | 2023-03-13 09:25:32 +0000 |
commit | 544d6d781b3c8aa108ced362d708693b5127f3d7 (patch) | |
tree | be0c226182063f0cdd41d549354485b2a4bca1a1 /sc | |
parent | 43e9582e01b63fb55a0e8cdea7b7f3bb209886ee (diff) |
tdf#39667 Enable tagged PDF by default
And adjust some tests accordingly
Change-Id: If81803ba48485273939f419ad589dc6dd2e9c531
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148303
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/uitest/calc_tests4/exportToPDF.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/qa/uitest/calc_tests4/exportToPDF.py b/sc/qa/uitest/calc_tests4/exportToPDF.py index ef79a0ce7790..e44d80be0ef4 100644 --- a/sc/qa/uitest/calc_tests4/exportToPDF.py +++ b/sc/qa/uitest/calc_tests4/exportToPDF.py @@ -34,14 +34,15 @@ class exportToPDF(UITestCase): # Export as PDF with self.ui_test.execute_dialog_through_command('.uno:ExportToPDF', close_button="") as xDialog: - selectedChildren = ['bookmarks', 'display', 'effects', 'enablea11y', 'enablecopy', 'exporturl', 'forms', 'reduceresolution'] + selectedChildren = ['bookmarks', 'display', 'effects', 'enablea11y', + 'enablecopy', 'exporturl', 'forms', 'reduceresolution', 'tagged'] for child in selectedChildren: self.assertEqual("true", get_state_as_dict(xDialog.getChild(child))['Selected']) nonSelectedChildren = ['allowdups', 'center', 'comments', 'convert', 'embed', 'emptypages', 'export', 'exportplaceholders', 'firstonleft', 'hiddenpages', 'menubar', 'notes', 'onlynotes', 'open', 'pdfa', 'pdfua', 'resize', 'singlepagesheets', - 'tagged', 'toolbar', 'usereferencexobject', 'viewpdf', 'watermark', 'window'] + 'toolbar', 'usereferencexobject', 'viewpdf', 'watermark', 'window'] for child in nonSelectedChildren: self.assertEqual("false", get_state_as_dict(xDialog.getChild(child))['Selected']) |