Selenium 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/selenium/openqa/selenium-server.jar.txt +0 -0
- data/lib/selenium/version +1 -1
- data/{test → spec}/selenium/download_page.rb +0 -0
- data/{test → spec}/selenium/home_page.rb +0 -0
- data/{test → spec}/selenium/menu.rb +0 -0
- data/{test → spec}/selenium/tc_basic_operation.rb +4 -4
- data/{test → spec}/selenium/tc_selenium_server.rb +0 -0
- metadata +9 -9
|
Binary file
|
data/lib/selenium/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.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 '
|
|
7
|
-
require '
|
|
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.
|
|
7
|
-
date: 2007-01-
|
|
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
|
-
-
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
-
|
|
52
|
-
-
|
|
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
|
|