Sha256: 7c1ad4b81985cdc41c90e357aed1a0e1e7d1c6edd8d36895c2c49306f96621c6

Contents?: true

Size: 510 Bytes

Versions: 48

Compression:

Stored size: 510 Bytes

Contents

require File.dirname(__FILE__) + "/../sample-app/sample_app"

class AjaxTestEnvironment
  def run
    Thread.abort_on_exception = true
    @example_app = Thread.new { SampleApp.start("127.0.0.1", 4567) }
    poller = Selenium::WebDriver::SocketPoller.new("127.0.0.1", 4567, 60)
    unless poller.connected?
      raise "timed out waiting for SampleApp to launch"
    end

    self
  end

  def stop
    @example_app.kill
  end

end

@server = AjaxTestEnvironment.new
@server.run

at_exit do
  @server.stop
end

Version data entries

48 entries across 48 versions & 4 rubygems

Version Path
page-object-0.9.4 features/support/ajax_text_environment.rb
page-object-0.9.3 features/support/ajax_text_environment.rb
page-object-0.9.2 features/support/ajax_text_environment.rb
page-object-0.9.1 features/support/ajax_text_environment.rb
page-object-0.9.0 features/support/ajax_text_environment.rb
page-object-0.8.10 features/support/ajax_text_environment.rb
page-object-0.8.9 features/support/ajax_text_environment.rb
page-object-0.8.8 features/support/ajax_text_environment.rb
page-object-0.8.7 features/support/ajax_text_environment.rb
page-object-0.8.6.1 features/support/ajax_text_environment.rb
page-object-0.8.6 features/support/ajax_text_environment.rb
page-object-0.8.5 features/support/ajax_text_environment.rb
page-object-0.8.4 features/support/ajax_text_environment.rb
page-object-0.8.3 features/support/ajax_text_environment.rb
page-object-0.8.2 features/support/ajax_text_environment.rb
page-object-0.8.1 features/support/ajax_text_environment.rb
page-object-0.8 features/support/ajax_text_environment.rb
page-object-0.7.6 features/support/ajax_text_environment.rb
page-object-0.7.5.1 features/support/ajax_text_environment.rb
page-object-0.7.5 features/support/ajax_text_environment.rb