用于Notepad ++的XML Tools插件中的XSL Transformation的脚本输入

时间:2014-05-30 18:32:44

标签: python xml xslt plugins notepad++

我使用Python脚本插件(http://npppythonscript.sourceforge.net)为Notepad ++做一些XML文件的自动化任务。我已经能够在我编写的脚本中使用XML Tools插件中的XSL Transformation功能,但只是为了显示弹出窗口,而不是输入.xsl文件的路径并引发转换。 / p>

这是我打开XML文件然后弹出XSL Transformation窗口的代码(在Python中,从Notepad ++中的Python脚本运行):

notepad.open(xmlFilePath)
notepad.runMenuCommand("XML Tools", "XSL Transformations")
#I have a time.sleep(30) here so I can manually input the XSL file
notepad.saveAs(htmlFilePath)
notepad.close()

如何自动填写.xsl路径并模拟按下按钮以启动转换?

0 个答案:

没有答案