This repository was archived by the owner on Mar 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public function findElement(WebDriverBy $locator);
36
36
* Find all WebDriverElements within this element using the given mechanism.
37
37
*
38
38
* @param WebDriverBy $locator
39
- * @return array A list of all WebDriverElements, or an empty array if
39
+ * @return WebDriverElement[] A list of all WebDriverElements, or an empty array if
40
40
* nothing matches
41
41
* @see WebDriverBy
42
42
*/
Original file line number Diff line number Diff line change @@ -48,14 +48,14 @@ public function isMultiple() {
48
48
}
49
49
50
50
/**
51
- * @return array All options belonging to this select tag.
51
+ * @return WebDriverElement[] All options belonging to this select tag.
52
52
*/
53
53
public function getOptions () {
54
54
return $ this ->element ->findElements (WebDriverBy::tagName ('option ' ));
55
55
}
56
56
57
57
/**
58
- * @return array All selected options belonging to this select tag.
58
+ * @return WebDriverElement[] All selected options belonging to this select tag.
59
59
*/
60
60
public function getAllSelectedOptions () {
61
61
$ selected_options = array ();
You can’t perform that action at this time.
0 commit comments