Sha256: 813ef272a875a38b785a393f2ab60a5ffb53ee2f398c5ceaf5a2dfb47eec2061
Contents?: true
Size: 1.2 KB
Versions: 6
Compression:
Stored size: 1.2 KB
Contents
#--- # Excerpted from "Scripted GUI Testing With Ruby", # published by The Pragmatic Bookshelf. # Copyrights apply to this code. It may not be used to create training material, # courses, books, articles, and the like. Contact us if you are in doubt. # We make no guarantees that this code is fit for any purpose. # Visit http://www.pragmaticprogrammer.com/titles/idgtr for more book information. #--- require 'java' require 'jemmy.jar' include_class 'org.netbeans.jemmy.JemmyProperties' include_class 'org.netbeans.jemmy.TestOut' JemmyProperties.set_current_output TestOut.get_null_output %w(Frame TextArea MenuBar Dialog Button TextField).each do |o| include_class "org.netbeans.jemmy.operators.J#{o}Operator" end class JDialogOperator def click(title) b = JButtonOperator.new self, title.delete('_') b.push end def type_in(message) e = JTextFieldOperator.new self e.type_text message end end module SwingGui def dialog(title, seconds=3) JemmyProperties.set_current_timeout \ 'DialogWaiter.WaitDialogTimeout', seconds * 1000 begin d = JDialogOperator.new title yield d #(1) d.wait_closed true rescue NativeException end end end
Version data entries
6 entries across 6 versions & 1 rubygems