共用方式為


PlaybackSettings.DelayBetweenActions 屬性

取得或設定動作之間的延遲 (以毫秒為單位)。

命名空間:  Microsoft.VisualStudio.TestTools.UITesting
組件:  Microsoft.VisualStudio.TestTools.UITesting (在 Microsoft.VisualStudio.TestTools.UITesting.dll 中)

語法

'宣告
Public Property DelayBetweenActions As Integer
    Get
    Set
public int DelayBetweenActions { get; set; }
public:
property int DelayBetweenActions {
    int get ();
    void set (int value);
}
member DelayBetweenActions : int with get, set
function get DelayBetweenActions () : int
function set DelayBetweenActions (value : int)

屬性值

型別:System.Int32
動作之間的延遲 (以毫秒為單位)。

範例

public void ModifiedSimpleAppTest()
        {
            #region Variable Declarations
            WpfButton uIStartButton = this.UIMainWindowWindow.UIStartButton;
            WpfCheckBox uICheckBoxCheckBox = this.UIMainWindowWindow.UICheckBoxCheckBox;
            WpfButton uICloseButton = this.UIMainWindowWindow.UIMainWindowTitleBar.UICloseButton;
            #endregion

            // Launch '%VisualStudioDir%\Projects\AddTwoNumbers\AddTwoNumbers\bin\Debug\AddTwoNumbers.exe'
            ApplicationUnderTest uIMainWindowWindow = ApplicationUnderTest.Launch(this.SimpleAppTestParams.UIMainWindowWindowExePath, this.SimpleAppTestParams.UIMainWindowWindowAlternateExePath);

            // Set delay between actions to 1 second. Add this code before any mouse, keyboard and SetProperty actions.
            Playback.PlaybackSettings.DelayBetweenActions = 1000;

            // Click 'Start' button
            Mouse.Click(uIStartButton, new Point(27, 10));

            uICheckBoxCheckBox.WaitForControlEnabled();
            
            // Select 'CheckBox' check box
            uICheckBoxCheckBox.Checked = this.SimpleAppTestParams.UICheckBoxCheckBoxChecked;

            // Click 'Close' button
            Mouse.Click(uICloseButton, new Point(15, 10));
        }

.NET Framework 安全性

請參閱

參考

PlaybackSettings 類別

Microsoft.VisualStudio.TestTools.UITesting 命名空間