[Resolved] Creating Postman package
Published: September 20, 2021 - 2:17 PM
I want to create a Postman package
Here is my code:
Installation and uninstallation work in PyScripter, but when I test on my test machine, the installation does not work.
Here is my code:
Code: Select all
def install():
# declaring local variables
package_version = control.get_software_version()
# installing the package
install_exe_if_needed('Postman-win64-8.12.1-Setup.exe',
silentflags='-s',
key='',
min_version=package_version
)
def uninstall():
run(r'"%LocalAppData%\Postman\Update" --uninstall -s')