|
|
|
@ -134,7 +134,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function id($value) { |
|
|
|
|
return $this->customSelector("named", array("id", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("id", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -142,7 +142,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function idOrName($value) { |
|
|
|
|
return $this->customSelector("named", array("id_or_name", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("id_or_name", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -150,7 +150,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function link($value) { |
|
|
|
|
return $this->customSelector("named", array("link", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("link", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -158,7 +158,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function button($value) { |
|
|
|
|
return $this->customSelector("named", array("button", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("button", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -166,15 +166,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function linkOrButton($value) { |
|
|
|
|
return $this->customSelector("named", array("link_or_button", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @param string $value |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function content($value) { |
|
|
|
|
return $this->customSelector("named", array("content", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("link_or_button", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -182,7 +174,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function field($value) { |
|
|
|
|
return $this->customSelector("named", array("field", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("field", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -190,7 +182,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function selectField($value) { |
|
|
|
|
return $this->customSelector("named", array("select", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("select", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -198,7 +190,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function checkbox($value) { |
|
|
|
|
return $this->customSelector("named", array("checkbox", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("checkbox", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -206,7 +198,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function radioButton($value) { |
|
|
|
|
return $this->customSelector("named", array("radio", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("radio", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -214,7 +206,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function fileInput($value) { |
|
|
|
|
return $this->customSelector("named", array("file", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("file", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -222,7 +214,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function optionGroup($value) { |
|
|
|
|
return $this->customSelector("named", array("optgroup", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("optgroup", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -230,7 +222,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function option($value) { |
|
|
|
|
return $this->customSelector("named", array("option", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("option", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -238,7 +230,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function fieldSet($value) { |
|
|
|
|
return $this->customSelector("named", array("fieldset", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("fieldset", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -246,7 +238,7 @@ class LocatorBuilder { |
|
|
|
|
* @return LocatorBuilderSecondStep |
|
|
|
|
*/ |
|
|
|
|
public function table($value) { |
|
|
|
|
return $this->customSelector("named", array("table", $value)); |
|
|
|
|
return $this->customSelector("named_exact", array("table", $value)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|