This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//find the fully qualified component query of ExtJS component cmp | |
String query = cmp.componentQuery; | |
Component parent = cmp.parent; | |
while (parent != null) { | |
query = parent.componentQuery + " " + query; | |
parent = parent.parent; | |
} | |
//use component query to find id of inputEl | |
//the only change here is the addition of inputEl before .id | |
String js = "return Ext.ComponentQuery.query(\"" + query + "\")[0].inputEl.id;"; | |
String id = (String) ((JavascriptExecutor) _driver).executeScript(js); | |
WebElement element = driver.findElement(By.id(id)); | |
//Now, this web element accepts sendKeys | |
element.sendKeys("it works"); |
4 comments:
Hi,Nice blog.
I have a question. IF a page has more than 1 inputbox how this script will identify the each input box uniquely?
The component query string must be constructed such that one and only one input will be selected. If it's not easy to guarantee that, then more error checking need to be added.
Hello Guogang Hu ...
Can u please provide full exple of component querry . please , can you provide some explaination and if any configuration is required for project SJTXE. and
can u please provide full project of locating the components.
Thanks
I created a github repo: https://github.com/huguogang/SJTXE. Please check it out.
Post a Comment