RemoteWebElement
class RemoteWebElement implements WebDriverElement, WebDriverLocatable (View source)
Represents an HTML element.
Properties
protected RemoteExecuteMethod | $executor | ||
protected string | $id | ||
protected UselessFileDetector | $fileDetector |
Methods
If this element is a TEXTAREA or text INPUT element, this will clear the value.
Click this element.
Find the first WebDriverElement within this element using the given mechanism.
Find all WebDriverElements within this element using the given mechanism.
Get the value of a the given attribute of the element.
Get the value of a given CSS property.
Get the location of element relative to the top-left corner of the page.
Try scrolling the element into the view port and return the location of element relative to the top-left corner of the page afterwards.
No description
Get the size of element.
Get the tag name of this element.
Get the visible (i.e. not hidden by CSS) innerText of this element, including sub-elements, without any leading or trailing whitespace.
Is this element displayed or not? This method avoids the problem of having to parse an element's "style" attribute.
Is the element currently enabled or not? This will generally return true for everything but disabled input elements.
Determine whether or not this element is selected or not.
Simulate typing into an element, which may set its value.
Set the fileDetector in order to let the RemoteWebElement to know that you are going to upload a file.
If this current element is a form, or an element within a form, then this will be submitted to the remote server.
Get the opaque ID of the element.
Return the WebDriverElement with $id
Details
__construct(RemoteExecuteMethod $executor, string $id)
No description
WebDriverElement
clear()
If this element is a TEXTAREA or text INPUT element, this will clear the value.
WebDriverElement
click()
Click this element.
WebDriverElement
findElement(WebDriverBy $by)
Find the first WebDriverElement within this element using the given mechanism.
WebDriverElement[]
findElements(WebDriverBy $by)
Find all WebDriverElements within this element using the given mechanism.
string
getAttribute(string $attribute_name)
Get the value of a the given attribute of the element.
string
getCSSValue(string $css_property_name)
Get the value of a given CSS property.
WebDriverPoint
getLocation()
Get the location of element relative to the top-left corner of the page.
WebDriverPoint
getLocationOnScreenOnceScrolledIntoView()
Try scrolling the element into the view port and return the location of element relative to the top-left corner of the page afterwards.
WebDriverCoordinates
getCoordinates()
No description
WebDriverDimension
getSize()
Get the size of element.
string
getTagName()
Get the tag name of this element.
string
getText()
Get the visible (i.e. not hidden by CSS) innerText of this element, including sub-elements, without any leading or trailing whitespace.
bool
isDisplayed()
Is this element displayed or not? This method avoids the problem of having to parse an element's "style" attribute.
bool
isEnabled()
Is the element currently enabled or not? This will generally return true for everything but disabled input elements.
bool
isSelected()
Determine whether or not this element is selected or not.
WebDriverElement
sendKeys(mixed $value)
Simulate typing into an element, which may set its value.
RemoteWebElement
setFileDetector(FileDetector $detector)
Set the fileDetector in order to let the RemoteWebElement to know that you are going to upload a file.
Basically, if you want WebDriver trying to send a file, set the fileDetector to be LocalFileDetector. Otherwise, keep it UselessFileDetector.
eg. $element->setFileDetector(new LocalFileDetector);
WebDriverElement
submit()
If this current element is a form, or an element within a form, then this will be submitted to the remote server.
string
getID()
Get the opaque ID of the element.
bool
equals(WebDriverElement $other)
Test if two element IDs refer to the same DOM element.
protected RemoteWebElement
newElement(string $id)
Return the WebDriverElement with $id