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

/external/chromium_org/third_party/WebKit/public/web/
H A DWebElement.h45 class WebElement : public WebNode { class in namespace:WebKit
47 WebElement() : WebNode() { } function in class:WebKit::WebElement
48 WebElement(const WebElement& e) : WebNode(e) { } function in class:WebKit::WebElement
50 WebElement& operator=(const WebElement& e) { WebNode::assign(e); return *this; }
51 void assign(const WebElement& e) { WebNode::assign(e); }
93 WebElement(const WTF::PassRefPtr<WebCore::Element>&);
94 WebElement& operator=(const WTF::PassRefPtr<WebCore::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
102 elif isinstance(value, WebElement):
114 return WebElement(self, value['ELEMENT'])
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebElement.cpp33 #include "WebElement.h"
49 bool WebElement::isFormControlElement() const
54 bool WebElement::isTextFormControlElement() const
59 WebString WebElement::tagName() const
64 bool WebElement::hasTagName(const WebString& tagName) const
70 bool WebElement::hasHTMLTagName(const WebString& tagName) const
81 bool WebElement::hasAttribute(const WebString& attrName) const
86 void WebElement::removeAttribute(const WebString& attrName)
94 WebString WebElement::getAttribute(const WebString& attrName) const
99 bool WebElement
179 WebElement::WebElement(const PassRefPtr<Element>& elem) function in class:WebKit::WebElement
[all...]
/external/chromium_org/chrome/test/chromedriver/test/
H A Drun_py_tests.py26 from webelement import WebElement namespace
312 isinstance(self._driver.FindElement('tag name', 'div'), WebElement))
321 self.assertTrue(isinstance(div, WebElement))
328 isinstance(element.FindElement('tag name', 'br'), WebElement))
338 self.assertTrue(isinstance(br, WebElement))

Completed in 233 milliseconds