On Sunday, December 29, 2013 3:55:48 AM UTC-8, Priti Fhuse wrote:
>
> I have been stuck for 2 days in
> this water using testwise tool
>  
> I would like to know what should be the sysntax for <span 
> class="LinkClassAvailability"> in watir 
>  
> 2> 2nd question how to use loops in testwise
>

re the second question.  I don't know testwise, but if it is using ruby (as 
Watir-webdriver does) then you would just use normal ruby loops or flow 
control

5.times do
  # stuff to do
end

while (condition_initially_true)  #loops while condition_initially_true 
becomes false
  #stuff to do
end

until (condition_initially_false) #loops until condition_initially_false 
becomes true
 #stuff to do
end

etc

-- 
-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

[email protected]
http://groups.google.com/group/watir-general
[email protected]

--- 
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to