0
我正在編寫一些自動控制模擬器。我也在pycharm中使用WebDriverAgent
以及openatx
python綁定。在bash腳本中有一些使用cURL的快速方法,以及python解決方案中更強大的一些方法。我想要使用兩者的組合。我已經將bashSupport
導入到pycharm中,並希望從項目的文件系統中執行bash腳本。如何從我的python項目執行一個bash腳本
我試過subprocess
import和os
但它似乎沒有執行我的腳本。這裏是一個例子:
import subprocess
subprocess.call(['launch_wda.sh'])
with device.session('com.apple.mobilesafari') as app:
print app.orientation
app(label="Address").tap()
app(label="Address").set_text("facebook.com \n")
launch_wda.sh
是在我的文件結構的項目。我的語法不正確還是缺少其他內容?