在 QTP 中将单行代码分成多行

Bereak single line code into multiple lines in QTP

_ 用于在 VBScript 中将长行拆分为多行。想知道它是否也适用于 QTP

使用 & _ 来打断你的长线。

sString = "Something very long " & _
                     "More on that" & _
                          "A little more"

引用为here