Skip to content

Commit 73e204a

Browse files
committed
Merge pull request php-webdriver#142 from jpickwell/master
Fix php-webdriver#141.
2 parents 390c600 + 2695367 commit 73e204a

File tree

2 files changed

+0
-42
lines changed

2 files changed

+0
-42
lines changed

lib/WebDriver.php

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -25,27 +25,6 @@ interface WebDriver extends WebDriverSearchContext {
2525
*/
2626
public function close();
2727

28-
/**
29-
* Find the first WebDriverElement using the given mechanism.
30-
*
31-
* @param WebDriverBy $locator
32-
* @return WebDriverElement NoSuchElementException is thrown in
33-
* HttpCommandExecutor if no element is found.
34-
* @see WebDriverBy
35-
*/
36-
public function findElement(WebDriverBy $locator);
37-
38-
/**
39-
* Find all WebDriverElements within the current page using the given
40-
* mechanism.
41-
*
42-
* @param WebDriverBy $locator
43-
* @return array<WebDriverElement> A list of all WebDriverElements,
44-
* or an empty array if nothing matches
45-
* @see WebDriverBy
46-
*/
47-
public function findElements(WebDriverBy $locator);
48-
4928
/**
5029
* Load a new web page in the current browser window.
5130
*

lib/WebDriverElement.php

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,6 @@ public function clear();
3333
*/
3434
public function click();
3535

36-
/**
37-
* Find the first WebDriverElement within this element using the given
38-
* mechanism.
39-
*
40-
* @param WebDriverBy $locator
41-
* @return WebDriverElement NoSuchElementException is thrown in
42-
* HttpCommandExecutor if no element is found.
43-
* @see WebDriverBy
44-
*/
45-
public function findElement(WebDriverBy $locator);
46-
47-
/**
48-
* Find all WebDriverElements within this element using the given mechanism.
49-
*
50-
* @param WebDriverBy $locator
51-
* @return array A list of all WebDriverElements, or an empty array if
52-
* nothing matches
53-
* @see WebDriverBy
54-
*/
55-
public function findElements(WebDriverBy $locator);
56-
5736
/**
5837
* Get the value of a the given attribute of the element.
5938
*

0 commit comments

Comments
 (0)