Exemple #1
0
        /// <inheritdoc cref="IElementHandle.PressAsync"/>
        public async Task PressAsync(string key, PressOptions options = null)
        {
            await FocusAsync().ConfigureAwait(false);

            await Page.Keyboard.PressAsync(key, options).ConfigureAwait(false);
        }
 /// <inheritdoc cref="IElementHandle.PressAsync"/>
 public Task PressAsync(string key, PressOptions options = null)
 {
     throw new NotImplementedException();
 }