我想用pywhatkit发送自动消息。它是由这个代码完成的:
import pywhatkit
pywhatkit.sendwhatmsg("+92xxxxxxxxxx", "Hello ", 22, 28)
print("Successfully Sent!")
我已经跟踪了这个链接:https://www.geeksforgeeks.org/introduction-to-pywhatkit-module/
我只是想问有没有什么方法可以在发送自动消息后自动关闭标签页?谢谢.
我想用pywhatkit发送自动消息。它是由这个代码完成的:
import pywhatkit
pywhatkit.sendwhatmsg("+92xxxxxxxxxx", "Hello ", 22, 28)
print("Successfully Sent!")
我已经跟踪了这个链接:https://www.geeksforgeeks.org/introduction-to-pywhatkit-module/
我只是想问有没有什么方法可以在发送自动消息后自动关闭标签页?谢谢.
3条答案
按热度按时间mzmfm0qo1#
如果你只是想关闭google Chrome标签,你可以模拟按
Ctrl+W
来关闭它。你可以在cmd中使用
keyboard
库-pip install keyboard
,然后:或者你可以使用
win32
、pyautogui
或任何其他可以让你这样做的库8cdiaqws2#
sendwhatmsg有另一个参数tab_close
rryofs0p3#