In 0.8 will the structure of HTML generated by layout managers change?

I'm asking because we're investing some time at the moment in deriving
Selenium Locators (based on xpath expressions).

For example, a label and text input box created using a qx.ui.basic.Label
and a qx.ui.form.TextField in a qx.ui.layout.HorizontalBoxLayout creates
HTML as:

<div> - for HorizontalBoxLayout
 <div> - for Label
  Label
 </div>
 <div> - for TextField
  <input/>
 </div>
<div>

To select the input/ element associated with the Label we navigate to the
parent and then find the first input element.

If for example the parent div for the box layout was not present in 0.8
then we would have to find another way to get the input element.

Hugh

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to