Tab Function

hello :slight_smile:

i want to make SendKeys("{tab}"); function, but its sends text “tab”

how to fix it?

Hello,

I assume you just want to press the Tab key on the SUT. To do this, you can simply use this command:

TypeText Tab

For a full list of all of the TypeText keywords, please see this page in our documentation: http://docs.testplant.com/?q=content/appendix-c-typetext-keywords

If you’re trying to accomplish something else, please provide more detail. Thanks!

Elizabeth

whe i am using

Code:
TypeText Tab

getting this error :

error CS0246: The type or namespace name ‘TypeText’ could not be found (are you missing a using directive or an assembly reference?

Are you using C# to send SenseTalk commands via eggDrive? If so, please see our eggDrive documentation here: http://docs.testplant.com/?q=content/eggdrive

Essentially, you are just sending XML-RPC calls to eggDrive that enclose the SenseTalk command you want to execute. In this case, the command I gave you previously:

TypeText Tab

will be enclosed in your XML-RPC call to eggDrive.

Or was this a question about eggPlant Performance?