hi, everyone,At recently days, we decided to make use of watir to implement the regession test, instead of the QTP(Quick Test Profesional, produced in HP company), which is the namest and strong bussiness automated test tool for web. Althrough the QTP bring us more benefits, we always look the future and work along with the agile script. The watir is best one choice. Comparing the Object spy tool and the object repositry and its manage in QTP, it seemed to us develop the watir code is very slowly. Especially, the developer have to spend much more time to spy the objects on page. For example, If the objects is placed in the container, such as the nested frames, the coder need to reseach into the object hierarchy and see more the object tree map via the MS UI develop tool. Obviously, it is bad thing when we meet more container and it takes more time.So, i want to consult with your guys,Have any soluations to improve the developing efficiency?If I provide the properties for the object like its unique name, will the watir throw the object hierarchy and generated the script automatically?Someone can share your experiences, or related technology ideas?thanks in advance-Wiston
> ie.text_field(:name => "test").set "abb",
If you are just hooking onto one attribute use
ie.text_field(:name, "test").set "abb"
for > 1
ie.text_field(:name => "test", :id => "aidy").set "abb"
or
ie.text_field(:name => "test", :index=> 1).set "abb"
or something like that
Aidy
Aidy
If you can't wait, you can build from trunk.
Bret
bugs apple wrote:
> Good, it's important for us to know when the 1.5.7 release?
>
>
>
> 2008/10/10 juuser <Jar...@gmail.com <mailto:Jar...@gmail.com>>