Processing Ajax...

Title

Message

Confirm

Confirm

Confirm

Confirm

Are you sure you want to delete this item?

Confirm

Are you sure you want to delete this item?

Type Text, Tab to Next Field, Type More Text

Description
This is a simple script that shows how to enter some text, send a Tab key, and then enter some more text
Language
C#.net
Minimum Version
Created By
Keith Lammers (BFS)
Contributors
-
Date Created
Dec 15, 2016
Date Last Modified
Dec 15, 2016

Scripted Function (Macro) Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
	public static void Run()
	{
		// type some text
		BFS.Input.SendText("text for field 1");
		
		// send a Tab
		BFS.Input.SendKeys("{VK_9}");

        // type some more text
        BFS.Input.SendText("text for field 2");
	}
}