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.
在 UFT 中,它非常简单。但是,当尝试使用 SendKeys 方法插入一些简单的文本时,语法显然是不正确的。有人在 LeanFT 中使用过 SendKeys 吗?
您将需要使用您用来设置文本的对象,然后使用 SendKeys。这个例子是用 Java 给出的,但在 C# 中应该是类似的。
object.SetText("example text"); object.SendKeys(Keys.RETURN);