Searched defs:WebElement (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/public/web/
H A DWebElement.h43 class WebElement : public WebNode { class in namespace:blink
45 WebElement() : WebNode() { } function in class:blink::WebElement
46 WebElement(const WebElement& e) : WebNode(e) { } function in class:blink::WebElement
48 WebElement& operator=(const WebElement& e) { WebNode::assign(e); return *this; }
49 void assign(const WebElement& e) { WebNode::assign(e); }
86 WebElement(const PassRefPtrWillBeRawPtr<Element>&);
87 WebElement& operator=(const PassRefPtrWillBeRawPtr<Element>&);
/external/chromium_org/chrome/test/chromedriver/client/
H A Dwebelement.py8 class WebElement(object): class in inherits:object
H A Dchromedriver.py7 from webelement import WebElement namespace
136 elif isinstance(value, WebElement):
148 return WebElement(self, value['ELEMENT'])
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebElement.cpp32 #include "public/web/WebElement.h"
48 bool WebElement::isFormControlElement() const
53 bool WebElement::isTextFormControlElement() const
58 WebString WebElement::tagName() const
63 bool WebElement::hasHTMLTagName(const WebString& tagName) const
74 bool WebElement::hasAttribute(const WebString& attrName) const
79 void WebElement::removeAttribute(const WebString& attrName)
87 WebString WebElement::getAttribute(const WebString& attrName) const
92 bool WebElement::setAttribute(const WebString& attrName, const WebString& attrValue)
102 unsigned WebElement
168 WebElement::WebElement(const PassRefPtrWillBeRawPtr<Element>& elem) function in class:blink::WebElement
[all...]
H A DWebRemoteFrameImpl.cpp560 void WebRemoteFrameImpl::requestTextChecking(const WebElement&) argument
804 WebString WebRemoteFrameImpl::markerTextForListItem(const WebElement&) const
/external/chromium_org/chrome/test/chromedriver/test/
H A Drun_py_tests.py32 from webelement import WebElement namespace
369 isinstance(self._driver.FindElement('tag name', 'div'), WebElement))
378 self.assertTrue(isinstance(div, WebElement))
385 isinstance(element.FindElement('tag name', 'br'), WebElement))
395 self.assertTrue(isinstance(br, WebElement))

Completed in 310 milliseconds