您可以参考 GUI 脚本帮助部分,它可以详细解释内容。它根据需要为您提供默认属性类型。如果您想执行下一步、停止或中止用户步骤,可以使用以下属性。值描述S成功W警告E错误A中止I信息请参阅以下使用上述属性类型显示不同消息的代码:Public Sub get_status_bar_value_exit_if_Error() Dim usr_resp AsString If(session.findById("wnd[0]/sbar").messagetype = "E"Or session.findById("wnd[0]/sbar").messagetype= "W") Then usr_resp =MsgBox(session.findById("wnd[0]/sbar").Text & Chr(13) &"在 SAP 中显示错误?", vbYesNo) If usr_resp =vbYes Then Else Callgo_to_Sap_home End If End End If End ... 阅读更多