Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

python - popen is not executing the command line parameters

I am trying to execute the following command via popen but not sure why it is not working and not error message thrown too.

import os

class Pabot():

    def run_pabot(self, folderOrSuiteName, tags=None):
        print("pabot --testlevelsplit -r " + folderOrSuiteName + " --i " + tags + " " + folderOrSuiteName + "")
        os.popen("pabot --testlevelsplit -r " + folderOrSuiteName + " --i " + tags + " " + folderOrSuiteName + "")


run = Pabot()
run.run_pabot("o/boo/test.robot", "Sequence_TC1")

From print statement:

pabot --testlevelsplit -r foo/boo/test.robot --i Sequence_TC1 foo/boo/test.robot

Right after execution, the window console gets disappeared.

Note: The same command (from print statement) works fine in commandline.

Any idea why popen does not function in this case?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.5k users

...