summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2023-03-06 09:55:12 +0100
committerSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2023-03-13 09:25:32 +0000
commit544d6d781b3c8aa108ced362d708693b5127f3d7 (patch)
treebe0c226182063f0cdd41d549354485b2a4bca1a1 /sd
parent43e9582e01b63fb55a0e8cdea7b7f3bb209886ee (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 'sd')
-rw-r--r--sd/qa/uitest/impress_tests/exportToPDF.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/sd/qa/uitest/impress_tests/exportToPDF.py b/sd/qa/uitest/impress_tests/exportToPDF.py
index 3621ad0fb8f5..f1240fabf165 100644
--- a/sd/qa/uitest/impress_tests/exportToPDF.py
+++ b/sd/qa/uitest/impress_tests/exportToPDF.py
@@ -36,14 +36,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'])