diff --git a/docs/api/testapi.html b/docs/api/testapi.html index 692b5529a64..149dc0a4d06 100644 --- a/docs/api/testapi.html +++ b/docs/api/testapi.html @@ -753,7 +753,7 @@
match_has_tag
assert_and_click
-
assert_and_click($mustmatch [, timeout => $timeout] [, button => $button] [, clicktime => $clicktime ] [, dclick => 1 ] [, mousehide => 1 ]);
+
assert_and_click($mustmatch [, timeout => $timeout] [, button => $button] [, clicktime => $clicktime ] [, dclick => 1 ] [, mousehide => 1 ] [, point_id => $id ]);
@@ -764,7 +764,9 @@
assert_and_click
be string or ARRAYREF of strings (['tag1', 'tag2']). $button is by default 'left'. 'left' and 'right' is supported. If $mousehide is true then always move mouse to the 'hidden' position after clicking to prevent -to hide the area where user wants to assert/click in second step.

+to hide the area where the user wants to assert/click in the second step. If +$point_id is specified, the clickpoint used will be the one with a matching +ID.

Throws FailedNeedle exception if $timeout timeout is hit. Default timeout is 30s.

@@ -774,7 +776,7 @@
assert_and_click
click_lastmatch
-
click_lastmatch([, button => $button] [, clicktime => $clicktime ] [, dclick => 1 ] [, mousehide => 1 ]);
+
click_lastmatch([, button => $button] [, clicktime => $clicktime ] [, dclick => 1 ] [, mousehide => 1 ] [, point_id => $id ]);
@@ -783,9 +785,10 @@
click_lastmatch
in the middle of the last match area. If $dclick is set, do double click instead. Supported values for $button are 'left' and 'right', 'left' is the default. If $mousehide is true then always move mouse to the 'hidden' -position after clicking to prevent to disturb the area where user wants to -assert/click in second step, otherwise move the mouse back to its previous -position.

+position after clicking to prevent to disturb the area where the user wants to +assert/click in the second step, otherwise move the mouse back to its previous +position. If $point_id is specified, the clickpoint used will be the one +with a matching ID.

@@ -2059,7 +2062,7 @@
backend_get_wait_still
diff --git a/docs/current.pdf b/docs/current.pdf index 1810482e999..0d61a67047b 100644 Binary files a/docs/current.pdf and b/docs/current.pdf differ diff --git a/docs/index.html b/docs/index.html index 897b26d6144..2faabde2237 100644 --- a/docs/index.html +++ b/docs/index.html @@ -12408,7 +12408,7 @@

Developing tests with container