Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为一个应用程序编写挤压测试,该应用程序使用一个菜单,一旦鼠标悬停在它上面就会弹出,这意味着当测试运行时,用户必须继续将鼠标移动到菜单上才能继续进行测试。该应用程序是用 QT 编写的。任何人都有这方面的经验和解决方法?
我遇到过类似的问题。您可以编写一个 bash 脚本来查找并终止进程。
对于 MAC 中的系统对话框,您可以执行以下操作:
数字 =ps aux | grep "[U]serNotificationCenter" | wc -l
ps aux | grep "[U]serNotificationCenter" | wc -l
if(number.to_i != 0) `killall "UserNotificationCenter"` end