Skip to content

Commit

Permalink
Update mouse.ex w/ placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyti authored May 24, 2024
1 parent 49f592c commit 13ee534
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/playwright/page/mouse.ex
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
defmodule Playwright.Page.Mouse do
defmodule Playwright.Mouse do
@moduledoc false

# @spec click(t(), number(), number(), options()) :: :ok
# def click(page, x, y, options \\ %{})
# def click(mouse, x, y, options \\ %{})

# @spec dblclick(t(), number(), number(), options()) :: :ok
# def dblclick(page, x, y, options \\ %{})
# def dblclick(mouse, x, y, options \\ %{})

# @spec down(t(), options()) :: :ok
# def down(page, options \\ %{})
# def down(mouse, options \\ %{})

# @spec move(t(), number(), number(), options()) :: :ok
# def move(page, x, y, options \\ %{})
# def move(mouse, x, y, options \\ %{})

# @spec up(t(), options()) :: :ok
# def up(page, options \\ %{})
# def up(mouse, options \\ %{})

# @spec wheel(t(), number(), number()) :: :ok
# def wheel(page, delta_x, delta_y)
# def wheel(mouse, delta_x, delta_y)

end

0 comments on commit 13ee534

Please sign in to comment.