joao-carloto / FireRobot

Firefox extension for Robot Framework/Selenium.
Other
28 stars 6 forks source link

own locators #87

Open winko opened 8 years ago

winko commented 8 years ago

Is it possible to define own locators, for example "itemId" which is used in Ext JS?

joao-carloto commented 8 years ago

Using itemid directly would not be possible, because it's not supported by the Selenium2Library, but we could use an xpath expression that would use any attribute, something like .//input[@itemid='someid']. In fact, that's a great idea! I'll start thinking on how to implement a custom locator feature. Can't give you any guarantee on when it will be available though. Thanks.