当前位置:   article > 正文

Python调用命令框自动输入命令_python如何打开cmd然后自动的输入东西

python如何打开cmd然后自动的输入东西
# coding=utf-8
import pyautogui
import os
import time
import pyperclip

# 配置
# 要打开的应用地址
app_dir = "C:\Windows\system32\cmd.exe"
# 执行命令列表
cmds = [
    "cd ../",
    "tree",
    "java",
    "javac",
    "cd ../",
    "cd ../",
    "你想说什么"
]

# 打开windows应用
time.sleep(5)
os.startfile(app_dir)

# 自动跑输入命令
pyautogui.typewrite(["enter"], '0.25')

# 暂停5秒,定位应用界面
time.sleep(5)

# 获取应用坐标,通过鼠标位置获取
# 获取鼠标位置
x, y = pyautogui.position()
# 输入命令
for i in cmds:
    """
     解决CMD中中文不可用情况,使用右键复制
    """
    # 放置到剪贴板
    pyperclip.copy(i)
    # 右键粘贴命令
    pyautogui.click(x = x, y = y, button = 'right')
    time.sleep(0.5)
    # pyautogui.typewrite([x for x in i], '0.25')
    pyautogui.typewrite(["enter"], '0.25')
    
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46

使用方法:
要求只能是cmd类型的应用
1、填写应用.exe地址
2、填写需要输入命令

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/203185
推荐阅读
相关标签
  

闽ICP备14008679号