for example:
require 'thread'
require 'watir'
class search
def test_google
ie = Watir::IE.start('http://www.google.com')
ie.text_field(:name, "q").set("pickaxe")
ie.button(:value, "Google Search").click
ie.close
end
def test_yahoo
ie = Watir::IE.start('http://www.google.com')
ie.text_field(:id, "p").set("pickaxe")
ie.button(:id, "searchsubmit").click
ie.close
end
end
threads = []
how can I run this 2 def at the same time?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Watir General" group.
To post to this group, send email to [email protected]
Before posting, please read the following guidelines:
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/watir-general
-~----------~----~----~----~------~----~------~--~---