Skip to content

Commit

Permalink
Update keyboard.ex w/ placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyti authored May 24, 2024
1 parent fb13fff commit 207c8d1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lib/playwright/page/keyboard.ex
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
defmodule Playwright.Page.Keyboard do
@moduledoc false

# @spec down(t(), binary()) :: :ok
# def down(page, key)

# @spec insert_text(t(), binary()) :: :ok
# def insert_text(page, text)

# @spec press(t(), binary(), options()) :: :ok
# def press(page, key, options \\ %{})

# @spec type(t(), binary(), options()) :: :ok
# def type(page, text, options \\ %{})

# @spec up(t(), binary()) :: :ok
# def up(page, key)

end

0 comments on commit 207c8d1

Please sign in to comment.