@@ -48,6 +48,7 @@ public function getValue() {
4848 * Locates elements whose class name contains the search value; compound class
4949 * names are not permitted.
5050 *
51+ * @param string $class_name
5152 * @return WebDriverBy
5253 */
5354 public static function className ($ class_name ) {
@@ -57,6 +58,7 @@ public static function className($class_name) {
5758 /**
5859 * Locates elements matching a CSS selector.
5960 *
61+ * @param string $css_selector
6062 * @return WebDriverBy
6163 */
6264 public static function cssSelector ($ css_selector ) {
@@ -66,6 +68,7 @@ public static function cssSelector($css_selector) {
6668 /**
6769 * Locates elements whose ID attribute matches the search value.
6870 *
71+ * @param string $id
6972 * @return WebDriverBy
7073 */
7174 public static function id ($ id ) {
@@ -74,6 +77,8 @@ public static function id($id) {
7477
7578 /**
7679 * Locates elements whose NAME attribute matches the search value.
80+ *
81+ * @param string $name
7782 * @return WebDriverBy
7883 */
7984 public static function name ($ name ) {
@@ -83,6 +88,7 @@ public static function name($name) {
8388 /**
8489 * Locates anchor elements whose visible text matches the search value.
8590 *
91+ * @param string $link_text
8692 * @return WebDriverBy
8793 */
8894 public static function linkText ($ link_text ) {
@@ -93,6 +99,7 @@ public static function linkText($link_text) {
9399 * Locates anchor elements whose visible text partially matches the search
94100 * value.
95101 *
102+ * @param string $partial_link_text
96103 * @return WebDriverBy
97104 */
98105 public static function partialLinkText ($ partial_link_text ) {
@@ -102,6 +109,7 @@ public static function partialLinkText($partial_link_text) {
102109 /**
103110 * Locates elements whose tag name matches the search value.
104111 *
112+ * @param string $tag_name
105113 * @return WebDriverBy
106114 */
107115 public static function tagName ($ tag_name ) {
@@ -111,6 +119,7 @@ public static function tagName($tag_name) {
111119 /**
112120 * Locates elements matching an XPath expression.
113121 *
122+ * @param string $xpath
114123 * @return WebDriverBy
115124 */
116125 public static function xpath ($ xpath ) {
0 commit comments