Selenium 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/lib/selenium/version CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
File without changes
File without changes
File without changes
@@ -3,17 +3,17 @@ require 'spec'
3
3
  $:.unshift File.join(File.dirname(__FILE__), '..', '..')
4
4
 
5
5
  require 'lib/selenium'
6
- require 'test/selenium/home_page'
7
- require 'test/selenium/download_page'
6
+ require 'spec/selenium/home_page'
7
+ require 'spec/selenium/download_page'
8
8
 
9
9
  module Selenium
10
10
  context 'basic operation with selenium' do
11
11
  context_setup do
12
- @browser = Selenium::SeleniumDriver.new("localhost", 4444, "*iexplore", "http://localhost:2000", 10000)
13
- @browser.start
14
12
  end
15
13
 
16
14
  setup do
15
+ @browser = Selenium::SeleniumDriver.new("localhost", 4444, "*iexplore", "http://localhost:2000", 10000)
16
+ @browser.start
17
17
  @browser.open('http://localhost:2000/index.html')
18
18
  end
19
19
 
File without changes
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.0
2
+ rubygems_version: 0.9.0.9
3
3
  specification_version: 1
4
4
  name: Selenium
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.0
7
- date: 2007-01-01 00:00:00 -08:00
6
+ version: 1.0.1
7
+ date: 2007-01-12 00:00:00 -08:00
8
8
  summary: A project that wraps selenium API into object-oriented testing style and packages it into a RubyGem.
9
9
  require_paths:
10
10
  - lib
@@ -44,12 +44,12 @@ files:
44
44
  - lib/selenium/openqa/README
45
45
  - lib/selenium/openqa/selenium-server.jar.txt
46
46
  - lib/selenium/openqa/selenium.rb
47
- - test/selenium
48
- - test/selenium/download_page.rb
49
- - test/selenium/home_page.rb
50
- - test/selenium/menu.rb
51
- - test/selenium/tc_basic_operation.rb
52
- - test/selenium/tc_selenium_server.rb
47
+ - spec/selenium
48
+ - spec/selenium/download_page.rb
49
+ - spec/selenium/home_page.rb
50
+ - spec/selenium/menu.rb
51
+ - spec/selenium/tc_basic_operation.rb
52
+ - spec/selenium/tc_selenium_server.rb
53
53
  - README
54
54
  test_files: []
55
55