commonwatir 1.6.5 → 1.6.6.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +461 -0
- data/{README.txt → LICENSE} +22 -48
- data/Rakefile +13 -11
- data/VERSION +1 -0
- data/lib/commonwatir.rb +3 -3
- data/lib/watir.rb +7 -6
- data/lib/watir/assertions.rb +44 -44
- data/lib/watir/browser.rb +149 -149
- data/lib/watir/browsers.rb +13 -12
- data/lib/watir/exceptions.rb +47 -47
- data/lib/watir/matches.rb +17 -17
- data/lib/watir/options.rb +53 -52
- data/lib/watir/testcase.rb +97 -58
- data/lib/watir/waiter.rb +91 -91
- data/unittests/attach_to_existing_window_test.rb +71 -0
- data/unittests/browser_test.rb +18 -0
- data/unittests/buttons_test.rb +224 -0
- data/unittests/dd_test.rb +70 -0
- data/unittests/dl_test.rb +68 -0
- data/unittests/dt_test.rb +68 -0
- data/unittests/element_collections_test.rb +22 -0
- data/unittests/em_test.rb +67 -0
- data/unittests/form2_test.rb +22 -0
- data/unittests/html/blankpage.html +12 -0
- data/unittests/html/buttons1.html +41 -0
- data/unittests/html/buttons2.html +61 -0
- data/unittests/html/definition_lists.html +48 -0
- data/unittests/html/emphasis.html +12 -0
- data/unittests/html/entertainment_com.html +668 -0
- data/unittests/html/frame_buttons.html +4 -0
- data/unittests/html/images/button.jpg +0 -0
- data/unittests/html/pass.html +10 -0
- data/unittests/html/phrase_elements.html +15 -0
- data/unittests/html/select_lists.html +18 -0
- data/unittests/html/utf8.html +12 -0
- data/unittests/html/visibility.html +90 -0
- data/unittests/html/watir_unit_tests.css +64 -0
- data/unittests/html/whitespace.html +29 -0
- data/unittests/inspect_test.rb +29 -0
- data/unittests/options.yml.example +13 -0
- data/unittests/select_list_test.rb +19 -0
- data/unittests/setup.rb +17 -0
- data/unittests/setup/browser.rb +14 -0
- data/unittests/setup/capture_io_helper.rb +17 -0
- data/unittests/setup/filter.rb +24 -0
- data/unittests/setup/lib.rb +22 -0
- data/unittests/setup/options.rb +29 -0
- data/unittests/setup/testUnitAddons.rb +8 -0
- data/unittests/setup/watir-unittest.rb +74 -0
- data/unittests/strong_test.rb +32 -0
- data/unittests/utf8_test.rb +24 -0
- data/unittests/visibility_test.rb +47 -0
- data/unittests/whitespace_test.rb +40 -0
- metadata +121 -39
- data/History.txt +0 -5
- data/Manifest.txt +0 -14
@@ -0,0 +1,68 @@
|
|
1
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
|
2
|
+
require 'unittests/setup'
|
3
|
+
|
4
|
+
class TC_Dt < Test::Unit::TestCase
|
5
|
+
include Watir::Exception
|
6
|
+
location __FILE__
|
7
|
+
|
8
|
+
def setup
|
9
|
+
@html_dir = "#{File.dirname(__FILE__)}/html"
|
10
|
+
uses_page "definition_lists.html"
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_exists
|
14
|
+
assert browser.dt(:id, "experience").exists?, "Could not find <dt> by :id"
|
15
|
+
assert browser.dt(:class, "current-industry").exists?, "Could not find <dt> by :class"
|
16
|
+
assert browser.dt(:xpath, "//dt[@id='experience']").exists?, "Could not find <dt> by :xpath"
|
17
|
+
assert browser.dt(:index, 1).exists?, "Could not find <dt> by :index"
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_does_not_exist
|
21
|
+
assert !browser.dt(:id, 'no_such_id').exists?, "Found non-existing <dt>"
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_attribute_class_name
|
25
|
+
assert_equal "industry", browser.dt(:id, "experience").class_name
|
26
|
+
assert_equal "", browser.dt(:id, 'education').class_name
|
27
|
+
assert_raises(UnknownObjectException) do
|
28
|
+
browser.dt(:id, 'no_such_id').class_name
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_attribute_id
|
33
|
+
assert_equal "experience", browser.dt(:class, 'industry').id
|
34
|
+
assert_equal "", browser.dt(:class, 'current-industry').id
|
35
|
+
assert_raises(UnknownObjectException) do
|
36
|
+
browser.dt(:id, 'no_such_id').id
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_attribute_title
|
41
|
+
assert_equal "experience", browser.dt(:id, 'experience').title
|
42
|
+
assert_equal "", browser.dt(:class, 'noop').title
|
43
|
+
assert_raises(UnknownObjectException) do
|
44
|
+
browser.dt(:id, 'no_such_id').title
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_attribute_text
|
49
|
+
assert_equal "Experience", browser.dt(:id, "experience").text
|
50
|
+
assert_equal "", browser.dt(:class, 'noop').text
|
51
|
+
assert_raises(UnknownObjectException) do
|
52
|
+
browser.dt(:id, 'no_such_id').text
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def test_dts_iterator
|
57
|
+
assert_equal(11, browser.dts.length)
|
58
|
+
assert_equal("experience", browser.dts[1].id)
|
59
|
+
|
60
|
+
browser.dts.each_with_index do |dt, idx|
|
61
|
+
assert_equal(browser.dt(:index,idx+1).text, dt.text)
|
62
|
+
assert_equal(browser.dt(:index,idx+1).id, dt.id)
|
63
|
+
assert_equal(browser.dt(:index,idx+1).class_name , dt.class_name)
|
64
|
+
assert_equal(browser.dt(:index,idx+1).title, dt.title)
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
|
2
|
+
require 'unittests/setup'
|
3
|
+
|
4
|
+
class TC_ElementCollections < Test::Unit::TestCase
|
5
|
+
location __FILE__
|
6
|
+
|
7
|
+
def setup
|
8
|
+
uses_page "definition_lists.html"
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_first
|
12
|
+
assert_equal "experience", browser.dls.first.title
|
13
|
+
assert_equal "industry", browser.dts.first.class_name
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_last
|
17
|
+
assert_equal 'noop', browser.dls.last.id
|
18
|
+
assert_equal 'noop', browser.dds.last.class_name
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
|
@@ -0,0 +1,67 @@
|
|
1
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
|
2
|
+
require 'unittests/setup'
|
3
|
+
|
4
|
+
class TC_Em < Test::Unit::TestCase
|
5
|
+
include Watir::Exception
|
6
|
+
location __FILE__
|
7
|
+
|
8
|
+
def setup
|
9
|
+
uses_page "emphasis.html"
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_exists
|
13
|
+
assert browser.em(:id, "em-one").exists?, "Could not find <em> by :id"
|
14
|
+
assert browser.em(:class, "em-class-one").exists?, "Could not find <em> by :class"
|
15
|
+
assert browser.em(:xpath, "//em[@id='em-one']").exists?, "Could not find <em> by :xpath"
|
16
|
+
assert browser.em(:index, 1).exists?, "Could not find <em> by :index"
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_does_not_exist
|
20
|
+
assert !browser.em(:id, 'no_such_id').exists?, "Found non-existing <em>"
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_attribute_class_name
|
24
|
+
assert_equal "em-class-one", browser.em(:id, "em-one").class_name
|
25
|
+
assert_equal "", browser.em(:id, 'em-two').class_name
|
26
|
+
assert_raises(UnknownObjectException) do
|
27
|
+
browser.em(:id, 'no_such_id').class_name
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_attribute_id
|
32
|
+
assert_equal "em-one", browser.em(:class, 'em-class-one').id
|
33
|
+
assert_equal "", browser.em(:class, 'em-class-two').id
|
34
|
+
assert_raises(UnknownObjectException) do
|
35
|
+
browser.em(:id, 'no_such_id').id
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def test_attribute_title
|
40
|
+
assert_equal "one", browser.em(:class, 'em-class-one').title
|
41
|
+
assert_equal "", browser.em(:id, 'em-two').title
|
42
|
+
assert_raises(UnknownObjectException) do
|
43
|
+
browser.em(:id, 'no_such_id').title
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_attribute_text
|
48
|
+
assert_equal "one text", browser.em(:id, "em-one").text
|
49
|
+
assert_equal "", browser.em(:class, 'em-class-two').text
|
50
|
+
assert_raises(UnknownObjectException) do
|
51
|
+
browser.em(:id, 'no_such_id').text
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_em_iterator
|
56
|
+
assert_equal(3, browser.ems.length)
|
57
|
+
assert_equal("two text", browser.ems[2].text)
|
58
|
+
|
59
|
+
browser.ems.each_with_index do |em, idx|
|
60
|
+
assert_equal browser.em(:index, idx+1).text, em.text
|
61
|
+
assert_equal browser.em(:index, idx+1).id, em.id
|
62
|
+
assert_equal browser.em(:index, idx+1).class_name, em.class_name
|
63
|
+
assert_equal browser.em(:index, idx+1).title, em.title
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
|
2
|
+
require 'unittests/setup'
|
3
|
+
|
4
|
+
class TC_Form_Entertainment < Test::Unit::TestCase
|
5
|
+
location __FILE__
|
6
|
+
def setup
|
7
|
+
uses_page "entertainment_com.html"
|
8
|
+
end
|
9
|
+
def test_bare_button
|
10
|
+
assert_nothing_raised do
|
11
|
+
browser.button(:src, Regexp.new('/images/button_continue.gif')).click
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
# http://jira.openqa.org/browse/WTR-80
|
16
|
+
tag_method :test_button_in_form, :fails_on_ie
|
17
|
+
def test_button_in_form
|
18
|
+
assert_nothing_raised do
|
19
|
+
browser.form(:name, 'shipaddress').button(:src, Regexp.new('/images/button_continue.gif')).click
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>
|
4
|
+
Test page for buttons
|
5
|
+
</title>
|
6
|
+
<link rel="stylesheet" type="text/css" href="watir_unit_tests.css">
|
7
|
+
</head>
|
8
|
+
<body>
|
9
|
+
CVS Revision: $Revision$
|
10
|
+
<br>
|
11
|
+
<br>
|
12
|
+
<table>
|
13
|
+
<tr>
|
14
|
+
<td>
|
15
|
+
<form name = test1 method = get action = pass.html>
|
16
|
+
|
17
|
+
<input type = button class="italic_button" name = b1 id = b2 value = "Click Me" onClick="javascript:document.location='pass.html';" title = "this is button1">
|
18
|
+
<br><input type = button name = b4 id=b5 value = "Disabled Button" onClick="javascript:document.location='fail.html';" disabled>
|
19
|
+
|
20
|
+
</form>
|
21
|
+
<td> The top button is for testing buttons with names
|
22
|
+
<br> The second button is used for testing disabled buttons
|
23
|
+
|
24
|
+
|
25
|
+
<tr>
|
26
|
+
<td>
|
27
|
+
<form name = test2 method = get action = pass2.html>
|
28
|
+
<br><input type = submit value=Submit>
|
29
|
+
</form>
|
30
|
+
<td> This button is a submit ( the others are buttons)
|
31
|
+
|
32
|
+
<tr>
|
33
|
+
<td>
|
34
|
+
<form name = test3 method = get action = pass3.html>
|
35
|
+
<br><input type = image src=images/button.jpg name =sub3>
|
36
|
+
</form>
|
37
|
+
<td> This button is an image. It should behave the same as a submit
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
</html>
|
@@ -0,0 +1,61 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>
|
4
|
+
Test page for buttons
|
5
|
+
</title>
|
6
|
+
<link rel="stylesheet" type="text/css" href="watir_unit_tests.css">
|
7
|
+
</head>
|
8
|
+
<body>
|
9
|
+
CVS Revision: $Revision: 1.0 $
|
10
|
+
<br>
|
11
|
+
<br>
|
12
|
+
<table>
|
13
|
+
<tr>
|
14
|
+
<td>
|
15
|
+
<form name = test1 method = get action = pass.html>
|
16
|
+
|
17
|
+
<input type = button class="italic_button" name = b1 id = b2 value = "Click Me" onClick="javascript:document.location='pass.html';" title = "this is button1">
|
18
|
+
<br><input type = button name = b4 id=b5 value = "Disabled Button" onClick="javascript:document.location='fail.html';" disabled>
|
19
|
+
<input type=text id="text_id" value="OldValue" size="20"/>
|
20
|
+
</form>
|
21
|
+
</td>
|
22
|
+
<td> The top button is for testing buttons with names
|
23
|
+
<br> The second button is used for testing disabled buttons
|
24
|
+
</td>
|
25
|
+
</tr>
|
26
|
+
|
27
|
+
<tr>
|
28
|
+
<td>
|
29
|
+
<form name = test2 method = get action = pass2.html>
|
30
|
+
<br><input type = submit value=Submit>
|
31
|
+
</form>
|
32
|
+
</td>
|
33
|
+
<td> This button is a submit ( the others are buttons)
|
34
|
+
</td>
|
35
|
+
</tr>
|
36
|
+
<tr>
|
37
|
+
<td>
|
38
|
+
<form name = test3 method = get action = pass3.html>
|
39
|
+
<br><input type = image src=images/button.jpg name =sub3>
|
40
|
+
</form>
|
41
|
+
</td>
|
42
|
+
<td> This button is an image. It should behave the same as a submit
|
43
|
+
|
44
|
+
</td>
|
45
|
+
</tr>
|
46
|
+
<tr>
|
47
|
+
<td>
|
48
|
+
<form name = test1 method = get action = pass.html>
|
49
|
+
|
50
|
+
<button class="italic_button" name=b6 id = b7 value="Click Me2" onClick="javascript:document.location='pass.html';" title="this is button2">Click Me2</button>
|
51
|
+
<br><button name = b8 id=b9 value ="Disabled Button2" onClick="javascript:document.location='fail.html';" disabled>Disabled Button2</button>
|
52
|
+
<button>Sign In</button>
|
53
|
+
</td>
|
54
|
+
</form>
|
55
|
+
<td> The top button is for testing buttons with names
|
56
|
+
<br> The second button is used for testing disabled buttons
|
57
|
+
</td>
|
58
|
+
</tr>
|
59
|
+
</table>
|
60
|
+
</body>
|
61
|
+
</html>
|
@@ -0,0 +1,48 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
4
|
+
<title>definition_lists</title>
|
5
|
+
</head>
|
6
|
+
|
7
|
+
<body id="definition_list">
|
8
|
+
<dl id="experience-list" class="list" title="experience">
|
9
|
+
<dt id="experience" class="industry" title="experience">Experience</dt>
|
10
|
+
<dd>11 years</dd>
|
11
|
+
|
12
|
+
<dt id="education" onclick="this.innerHTML='changed'">Education</dt>
|
13
|
+
<dd title="education" onclick="this.innerHTML='changed'">Master</dd>
|
14
|
+
|
15
|
+
<dt class="current-industry">Current industry</dt>
|
16
|
+
<dd class="industry">Architecture</dd>
|
17
|
+
|
18
|
+
<dt>Previous industry experience</dt>
|
19
|
+
<dd class="industry">Architecture</dd>
|
20
|
+
</dl>
|
21
|
+
|
22
|
+
<dl class="personalia">
|
23
|
+
<dt id="name" title="name"><div>Name</div></dt>
|
24
|
+
<dd id="someone" class="name" title="someone">John Doe</dd>
|
25
|
+
|
26
|
+
<dt>Address</dt>
|
27
|
+
<dd class="address">John Doe</dd>
|
28
|
+
|
29
|
+
<dt>City</dt>
|
30
|
+
<dd id="city">New York</dd>
|
31
|
+
|
32
|
+
<dt>Country</dt>
|
33
|
+
<dd>USA</dd>
|
34
|
+
|
35
|
+
<dt>Gender</dt>
|
36
|
+
<dd>Male</dd>
|
37
|
+
|
38
|
+
<dt>Age</dt>
|
39
|
+
<dd>35</dd>
|
40
|
+
</dl>
|
41
|
+
|
42
|
+
<dl id="noop" onclick="this.innerHTML = 'noop'">
|
43
|
+
<dt class="noop"></dt> <!-- empty node -->
|
44
|
+
<dd class="noop"></dt> <!-- empty node -->
|
45
|
+
</dl>
|
46
|
+
|
47
|
+
</body>
|
48
|
+
</html>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
4
|
+
<title>emphasis</title>
|
5
|
+
</head>
|
6
|
+
|
7
|
+
<body id="emphasis" onload="">
|
8
|
+
<em id="em-one" class="em-class-one" title="one">one text</em>
|
9
|
+
<em id="em-two">two text</em>
|
10
|
+
<em class="em-class-two"></em>
|
11
|
+
</body>
|
12
|
+
</html>
|
@@ -0,0 +1,668 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<title>Entertainment.com</title>
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
<!-- fuseaction to shopcart step mapping -->
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
<meta name="WT.si_n" content="SCVisitorV2">
|
16
|
+
<meta name="WT.si_p" content="billing">
|
17
|
+
|
18
|
+
|
19
|
+
<!-- if not in reg module exit -->
|
20
|
+
|
21
|
+
|
22
|
+
<meta name="WT.cg_n" content="shopcart">
|
23
|
+
<meta name="WT.cg_s" content="viewcart">
|
24
|
+
<meta name="WT.ti" content="dsp_viewcart.cfm">
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
<link rel="stylesheet" href="/consumer_site_styles.css" type="text/css" />
|
30
|
+
<script language="JavaScript" src="/html/functions.js"></script>
|
31
|
+
|
32
|
+
<script language="JavaScript">
|
33
|
+
function careers_popup() {
|
34
|
+
Win = window.open("http://career.pereless.com/index.cfm?CID=75018&open=Employment&top=info&menuitem=","thewindow","toolbar=no,width=800,height=550,status=no,scrollbars=yes,resize=yes,menubar=no");
|
35
|
+
Win.focus();
|
36
|
+
Win.moveTo(250,250);
|
37
|
+
}
|
38
|
+
</script>
|
39
|
+
|
40
|
+
</head>
|
41
|
+
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
42
|
+
|
43
|
+
|
44
|
+
<MAP Name="HeaderMap">
|
45
|
+
<AREA
|
46
|
+
Shape="rect"
|
47
|
+
Coords="5,5,200,60"
|
48
|
+
Href="http://www.entertainment.com/">
|
49
|
+
</MAP>
|
50
|
+
|
51
|
+
<table cellpadding="0" cellspacing="0" width="760">
|
52
|
+
<tr>
|
53
|
+
<td><img src="https://media.entertainment.com/images/06/shopcart/ShopCart_MemNotIn_2of5.gif" usemap="#HeaderMap"></td>
|
54
|
+
</tr>
|
55
|
+
</table>
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
<table border="0" cellpadding="0" cellspacing="0" width="760">
|
60
|
+
<tr>
|
61
|
+
<td valign="top">
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
<form action="index.cfm" method="post" name="shipaddress">
|
68
|
+
|
69
|
+
|
70
|
+
<input type="hidden" name="fuseaction" value="billing">
|
71
|
+
|
72
|
+
|
73
|
+
<input type="hidden" name="postaction" value="billing">
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
<input type="hidden" name="module" value="shopcart">
|
78
|
+
|
79
|
+
|
80
|
+
<br>
|
81
|
+
<table width="517" border="0" align="center" cellpadding="0" cellspacing="0">
|
82
|
+
<tr>
|
83
|
+
<td class="bg18"><img src="../images/corner_grey_tl.gif" width="13" height="13"></td>
|
84
|
+
<td class="bg18"><img src="../images/spacer.gif" width="1" height="1"></td>
|
85
|
+
<td class="bg18"><img src="../images/corner_grey_tr.gif" width="13" height="13"></td>
|
86
|
+
</tr>
|
87
|
+
<tr>
|
88
|
+
<td class="bg18"><img src="../images/spacer.gif" width="1" height="1"></td>
|
89
|
+
<td class="bg18">
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
<!-- main body start -->
|
94
|
+
<table width="491" border="0" cellspacing="0" cellpadding="0">
|
95
|
+
<tr>
|
96
|
+
<td colspan="2"><div class="txt6Bold">Billing Information<br><img src="../images/spacer.gif" width="1" height="2"></div></td>
|
97
|
+
</tr>
|
98
|
+
<!-- ********* dk grey line **************-->
|
99
|
+
<tr>
|
100
|
+
<td width="491" colspan="2" class="bg17"><img src="../images/spacer.gif" width="1" height="1"></td>
|
101
|
+
</tr>
|
102
|
+
<tr><td colspan="2">
|
103
|
+
<!-- ---------Billing information--------- -->
|
104
|
+
<table width="491" border="0" cellpadding="0" cellspacing="0">
|
105
|
+
<tr>
|
106
|
+
<td colspan="3" class="bg18"><img src="../images/spacer.gif" width="1" height="5"></td>
|
107
|
+
</tr>
|
108
|
+
|
109
|
+
<tr>
|
110
|
+
<td width="215" align="right">*First Name:</td>
|
111
|
+
<td width="5"><img src="../images/spacer.gif" width="5" height="2"></td>
|
112
|
+
<td width="271"><input type="text" name="firstname" value="" size="22"></td>
|
113
|
+
</tr>
|
114
|
+
<tr>
|
115
|
+
<td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
|
116
|
+
</tr>
|
117
|
+
<tr>
|
118
|
+
<td align="right">*Last Name:</td>
|
119
|
+
<td> </td>
|
120
|
+
<td><input type="text" name="lastname" value="" size="22"></td>
|
121
|
+
</tr>
|
122
|
+
|
123
|
+
<tr>
|
124
|
+
<td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
|
125
|
+
</tr>
|
126
|
+
<tr>
|
127
|
+
<td align="right">*Phone:</td>
|
128
|
+
<td> </td>
|
129
|
+
<td><input type="text" name="dayphone" value="" size="18"></td>
|
130
|
+
</tr>
|
131
|
+
<tr>
|
132
|
+
<td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
|
133
|
+
</tr>
|
134
|
+
<tr>
|
135
|
+
<td align="right">*Street Address 1:</td>
|
136
|
+
<td> </td>
|
137
|
+
<td><input type="text" name="address" value="" size="22"></td>
|
138
|
+
</tr>
|
139
|
+
<tr>
|
140
|
+
<td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
|
141
|
+
</tr>
|
142
|
+
<tr>
|
143
|
+
<td align="right">Street Address 2:</td>
|
144
|
+
<td> </td>
|
145
|
+
<td><input type="text" name="address2" value="" size="22"></td>
|
146
|
+
</tr>
|
147
|
+
<tr>
|
148
|
+
<td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
|
149
|
+
</tr>
|
150
|
+
<tr>
|
151
|
+
<td align="right">*City:</td>
|
152
|
+
<td> </td>
|
153
|
+
<td><input type="text" name="city" value="" size="22"></td>
|
154
|
+
</tr>
|
155
|
+
<tr>
|
156
|
+
<td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
|
157
|
+
</tr>
|
158
|
+
<tr>
|
159
|
+
<td align="right">*State/Province:</td>
|
160
|
+
<td> </td>
|
161
|
+
<td><input type="text" size="4" maxlength="2" name="state" VALUE=""></td>
|
162
|
+
</tr>
|
163
|
+
<tr>
|
164
|
+
<td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
|
165
|
+
</tr>
|
166
|
+
<tr>
|
167
|
+
<td align="right">*Country:</td>
|
168
|
+
<td> </td>
|
169
|
+
<td>
|
170
|
+
<SELECT NAME="country">
|
171
|
+
<OPTION VALUE="999COU00000001">United States of America</OPTION>
|
172
|
+
|
173
|
+
<OPTION VALUE="999COU00000067"
|
174
|
+
>Andorra
|
175
|
+
|
176
|
+
<OPTION VALUE="999COU00000011"
|
177
|
+
>Anguilla
|
178
|
+
|
179
|
+
<OPTION VALUE="999COU00000012"
|
180
|
+
>Antigua/Barbuda
|
181
|
+
|
182
|
+
<OPTION VALUE="999COU00000058"
|
183
|
+
>Argentina
|
184
|
+
|
185
|
+
<OPTION VALUE="999COU00000118"
|
186
|
+
>Armenia
|
187
|
+
|
188
|
+
<OPTION VALUE="999COU00000013"
|
189
|
+
>Aruba
|
190
|
+
|
191
|
+
<OPTION VALUE="999COU00000004"
|
192
|
+
>Australia
|
193
|
+
|
194
|
+
<OPTION VALUE="999COU00000068"
|
195
|
+
>Austria
|
196
|
+
|
197
|
+
<OPTION VALUE="999COU00000009"
|
198
|
+
>Bahamas
|
199
|
+
|
200
|
+
<OPTION VALUE="999COU00000032"
|
201
|
+
>Bahamas
|
202
|
+
|
203
|
+
<OPTION VALUE="999COU00000095"
|
204
|
+
>Bahrain
|
205
|
+
|
206
|
+
<OPTION VALUE="999COU00000014"
|
207
|
+
>Barbados
|
208
|
+
|
209
|
+
<OPTION VALUE="999COU00000069"
|
210
|
+
>Belarus
|
211
|
+
|
212
|
+
<OPTION VALUE="999COU00000070"
|
213
|
+
>Belgium
|
214
|
+
|
215
|
+
<OPTION VALUE="999COU00000055"
|
216
|
+
>Belize
|
217
|
+
|
218
|
+
<OPTION VALUE="999COU00000036"
|
219
|
+
>Bermuda
|
220
|
+
|
221
|
+
<OPTION VALUE="999COU00000037"
|
222
|
+
>Botswana
|
223
|
+
|
224
|
+
<OPTION VALUE="999COU00000059"
|
225
|
+
>Brazil
|
226
|
+
|
227
|
+
<OPTION VALUE="999COU00000015"
|
228
|
+
>British Virgin Islands
|
229
|
+
|
230
|
+
<OPTION VALUE="999COU00000071"
|
231
|
+
>Bulgaria
|
232
|
+
|
233
|
+
<OPTION VALUE="999COU00000065"
|
234
|
+
>Burma/Myanmar
|
235
|
+
|
236
|
+
<OPTION VALUE="999COU00000002"
|
237
|
+
>Canada
|
238
|
+
|
239
|
+
<OPTION VALUE="999COU00000016"
|
240
|
+
>Cayman Islands
|
241
|
+
|
242
|
+
<OPTION VALUE="999COU00000060"
|
243
|
+
>Chile
|
244
|
+
|
245
|
+
<OPTION VALUE="999COU00000114"
|
246
|
+
>China
|
247
|
+
|
248
|
+
<OPTION VALUE="999COU00000061"
|
249
|
+
>Colombia
|
250
|
+
|
251
|
+
<OPTION VALUE="999COU00000056"
|
252
|
+
>Costa Rica
|
253
|
+
|
254
|
+
<OPTION VALUE="999COU00000017"
|
255
|
+
>Cuba
|
256
|
+
|
257
|
+
<OPTION VALUE="999COU00000096"
|
258
|
+
>Cyprus
|
259
|
+
|
260
|
+
<OPTION VALUE="999COU00000072"
|
261
|
+
>Czech Republic
|
262
|
+
|
263
|
+
<OPTION VALUE="999COU00000073"
|
264
|
+
>Denmark
|
265
|
+
|
266
|
+
<OPTION VALUE="999COU00000018"
|
267
|
+
>Dominica
|
268
|
+
|
269
|
+
<OPTION VALUE="999COU00000019"
|
270
|
+
>Dominican Republic
|
271
|
+
|
272
|
+
<OPTION VALUE="999COU00000062"
|
273
|
+
>Ecuador
|
274
|
+
|
275
|
+
<OPTION VALUE="999COU00000097"
|
276
|
+
>Egypt
|
277
|
+
|
278
|
+
<OPTION VALUE="999COU00000057"
|
279
|
+
>El Salvador
|
280
|
+
|
281
|
+
<OPTION VALUE="999COU00000005"
|
282
|
+
>England
|
283
|
+
|
284
|
+
<OPTION VALUE="999COU00000074"
|
285
|
+
>Finland
|
286
|
+
|
287
|
+
<OPTION VALUE="999COU00000007"
|
288
|
+
>France
|
289
|
+
|
290
|
+
<OPTION VALUE="999COU00000075"
|
291
|
+
>France
|
292
|
+
|
293
|
+
<OPTION VALUE="999COU00000076"
|
294
|
+
>Germany
|
295
|
+
|
296
|
+
<OPTION VALUE="999COU00000077"
|
297
|
+
>Greece
|
298
|
+
|
299
|
+
<OPTION VALUE="999COU00000020"
|
300
|
+
>Grenada
|
301
|
+
|
302
|
+
<OPTION VALUE="999COU00000021"
|
303
|
+
>Guadeloupe
|
304
|
+
|
305
|
+
<OPTION VALUE="999COU00000110"
|
306
|
+
>Guam
|
307
|
+
|
308
|
+
<OPTION VALUE="999COU00000022"
|
309
|
+
>Haiti
|
310
|
+
|
311
|
+
<OPTION VALUE="999COU00000008"
|
312
|
+
>Holland
|
313
|
+
|
314
|
+
<OPTION VALUE="999COU00000106"
|
315
|
+
>Honduras
|
316
|
+
|
317
|
+
<OPTION VALUE="999COU00000111"
|
318
|
+
>Hong Kong
|
319
|
+
|
320
|
+
<OPTION VALUE="999COU00000078"
|
321
|
+
>Hungary
|
322
|
+
|
323
|
+
<OPTION VALUE="999COU00000115"
|
324
|
+
>Iceland
|
325
|
+
|
326
|
+
<OPTION VALUE="999COU00000044"
|
327
|
+
>India
|
328
|
+
|
329
|
+
<OPTION VALUE="999COU00000045"
|
330
|
+
>Indonesia
|
331
|
+
|
332
|
+
<OPTION VALUE="999COU00000079"
|
333
|
+
>Ireland
|
334
|
+
|
335
|
+
<OPTION VALUE="999COU00000098"
|
336
|
+
>Israel
|
337
|
+
|
338
|
+
<OPTION VALUE="999COU00000080"
|
339
|
+
>Italy
|
340
|
+
|
341
|
+
<OPTION VALUE="999COU00000023"
|
342
|
+
>Jamaica
|
343
|
+
|
344
|
+
<OPTION VALUE="999COU00000046"
|
345
|
+
>Japan
|
346
|
+
|
347
|
+
<OPTION VALUE="999COU00000104"
|
348
|
+
>Korea
|
349
|
+
|
350
|
+
<OPTION VALUE="999COU00000109"
|
351
|
+
>Lebanon
|
352
|
+
|
353
|
+
<OPTION VALUE="999COU00000081"
|
354
|
+
>Luxembourg
|
355
|
+
|
356
|
+
<OPTION VALUE="999COU00000047"
|
357
|
+
>Malaysia
|
358
|
+
|
359
|
+
<OPTION VALUE="999COU00000082"
|
360
|
+
>Malta
|
361
|
+
|
362
|
+
<OPTION VALUE="999COU00000024"
|
363
|
+
>Martinique
|
364
|
+
|
365
|
+
<OPTION VALUE="999COU00000003"
|
366
|
+
>Mexico
|
367
|
+
|
368
|
+
<OPTION VALUE="999COU00000025"
|
369
|
+
>Montserrat
|
370
|
+
|
371
|
+
<OPTION VALUE="999COU00000038"
|
372
|
+
>Morocco
|
373
|
+
|
374
|
+
<OPTION VALUE="999COU00000039"
|
375
|
+
>Mozambique
|
376
|
+
|
377
|
+
<OPTION VALUE="999COU00000040"
|
378
|
+
>Namibia
|
379
|
+
|
380
|
+
<OPTION VALUE="999COU00000026"
|
381
|
+
>Navassa Island
|
382
|
+
|
383
|
+
<OPTION VALUE="999COU00000048"
|
384
|
+
>Nepal
|
385
|
+
|
386
|
+
<OPTION VALUE="999COU00000083"
|
387
|
+
>Netherlands
|
388
|
+
|
389
|
+
<OPTION VALUE="999COU00000027"
|
390
|
+
>Netherlands Antilles
|
391
|
+
|
392
|
+
<OPTION VALUE="999COU00000066"
|
393
|
+
>New Zealand
|
394
|
+
|
395
|
+
<OPTION VALUE="999COU00000100"
|
396
|
+
>Northern Ireland
|
397
|
+
|
398
|
+
<OPTION VALUE="999COU00000084"
|
399
|
+
>Norway
|
400
|
+
|
401
|
+
<OPTION VALUE="999COU00000119"
|
402
|
+
>Pakistan
|
403
|
+
|
404
|
+
<OPTION VALUE="999COU00000049"
|
405
|
+
>People's Republic of China
|
406
|
+
|
407
|
+
<OPTION VALUE="999COU00000063"
|
408
|
+
>Peru
|
409
|
+
|
410
|
+
<OPTION VALUE="999COU00000050"
|
411
|
+
>Philippines
|
412
|
+
|
413
|
+
<OPTION VALUE="999COU00000085"
|
414
|
+
>Poland
|
415
|
+
|
416
|
+
<OPTION VALUE="999COU00000086"
|
417
|
+
>Portugal
|
418
|
+
|
419
|
+
<OPTION VALUE="999COU00000028"
|
420
|
+
>Puerto Rico
|
421
|
+
|
422
|
+
<OPTION VALUE="999COU00000107"
|
423
|
+
>Qatar
|
424
|
+
|
425
|
+
<OPTION VALUE="999COU00000051"
|
426
|
+
>Republic of Maldives
|
427
|
+
|
428
|
+
<OPTION VALUE="999COU00000087"
|
429
|
+
>Romania
|
430
|
+
|
431
|
+
<OPTION VALUE="999COU00000088"
|
432
|
+
>Russia
|
433
|
+
|
434
|
+
<OPTION VALUE="999COU00000029"
|
435
|
+
>Saint Kitts & Nevis
|
436
|
+
|
437
|
+
<OPTION VALUE="999COU00000030"
|
438
|
+
>Saint Lucia
|
439
|
+
|
440
|
+
<OPTION VALUE="999COU00000113"
|
441
|
+
>Saint Maarten/St. Martin
|
442
|
+
|
443
|
+
<OPTION VALUE="999COU00000031"
|
444
|
+
>Saint Vincent & Grenadines
|
445
|
+
|
446
|
+
<OPTION VALUE="999COU00000103"
|
447
|
+
>Saipan
|
448
|
+
|
449
|
+
<OPTION VALUE="999COU00000117"
|
450
|
+
>Saudi Arabia
|
451
|
+
|
452
|
+
<OPTION VALUE="999COU00000101"
|
453
|
+
>Scotland
|
454
|
+
|
455
|
+
<OPTION VALUE="999COU00000052"
|
456
|
+
>Singapore
|
457
|
+
|
458
|
+
<OPTION VALUE="999COU00000089"
|
459
|
+
>Slovakia
|
460
|
+
|
461
|
+
<OPTION VALUE="999COU00000090"
|
462
|
+
>Slovenia
|
463
|
+
|
464
|
+
<OPTION VALUE="999COU00000041"
|
465
|
+
>South Africa
|
466
|
+
|
467
|
+
<OPTION VALUE="999COU00000108"
|
468
|
+
>South Korea
|
469
|
+
|
470
|
+
<OPTION VALUE="999COU00000091"
|
471
|
+
>Spain
|
472
|
+
|
473
|
+
<OPTION VALUE="999COU00000053"
|
474
|
+
>Sri Lanka
|
475
|
+
|
476
|
+
<OPTION VALUE="999COU00000092"
|
477
|
+
>Sweden
|
478
|
+
|
479
|
+
<OPTION VALUE="999COU00000093"
|
480
|
+
>Switzerland
|
481
|
+
|
482
|
+
<OPTION VALUE="999COU00000112"
|
483
|
+
>Taiwan
|
484
|
+
|
485
|
+
<OPTION VALUE="999COU00000042"
|
486
|
+
>Tanzania
|
487
|
+
|
488
|
+
<OPTION VALUE="999COU00000054"
|
489
|
+
>Thailand
|
490
|
+
|
491
|
+
<OPTION VALUE="999COU00000116"
|
492
|
+
>Thailand
|
493
|
+
|
494
|
+
<OPTION VALUE="999COU00000033"
|
495
|
+
>Trinidad & Tobago
|
496
|
+
|
497
|
+
<OPTION VALUE="999COU00000094"
|
498
|
+
>Turkey
|
499
|
+
|
500
|
+
<OPTION VALUE="999COU00000034"
|
501
|
+
>Turks & Caicos Islands
|
502
|
+
|
503
|
+
<OPTION VALUE="999COU00000099"
|
504
|
+
>United Arab Emirates
|
505
|
+
|
506
|
+
<OPTION VALUE="999COU00000006"
|
507
|
+
>United Kingdom
|
508
|
+
|
509
|
+
<OPTION VALUE="999COU00000001"
|
510
|
+
>United States of America
|
511
|
+
|
512
|
+
<OPTION VALUE="999COU00000064"
|
513
|
+
>Venezuela
|
514
|
+
|
515
|
+
<OPTION VALUE="999COU00000105"
|
516
|
+
>Vietnam
|
517
|
+
|
518
|
+
<OPTION VALUE="999COU00000035"
|
519
|
+
>Virgin Islands
|
520
|
+
|
521
|
+
<OPTION VALUE="999COU00000102"
|
522
|
+
>Wales
|
523
|
+
|
524
|
+
<OPTION VALUE="999COU00000010"
|
525
|
+
>West Indies
|
526
|
+
|
527
|
+
<OPTION VALUE="999COU00000043"
|
528
|
+
>Zimbabwe
|
529
|
+
|
530
|
+
</SELECT>
|
531
|
+
</td>
|
532
|
+
</tr>
|
533
|
+
<tr>
|
534
|
+
<td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
|
535
|
+
</tr>
|
536
|
+
<tr>
|
537
|
+
<td align="right">*Zip/Postal Code:</td>
|
538
|
+
<td> </td>
|
539
|
+
<td><input type="text" name="zip" value="" size="16"></td>
|
540
|
+
</tr>
|
541
|
+
|
542
|
+
<tr>
|
543
|
+
<td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
|
544
|
+
</tr>
|
545
|
+
<tr>
|
546
|
+
<td align="right">*E-mail Address:</td>
|
547
|
+
<td> </td>
|
548
|
+
<td><input type="text" name="email" value="" size="16"></td>
|
549
|
+
</tr>
|
550
|
+
|
551
|
+
<tr>
|
552
|
+
<td colspan="3"><img src="../images/spacer.gif" width="1" height="5"></td>
|
553
|
+
</tr>
|
554
|
+
<tr>
|
555
|
+
<td align="right">*Confirm E-mail Address:</td>
|
556
|
+
<td> </td>
|
557
|
+
<td><input type="text" name="confirmemail" value="" size="16"></td>
|
558
|
+
</tr>
|
559
|
+
|
560
|
+
<tr>
|
561
|
+
<td align="right"> </td>
|
562
|
+
<td> </td>
|
563
|
+
<td> </td>
|
564
|
+
</tr>
|
565
|
+
|
566
|
+
<tr>
|
567
|
+
<td colspan="3" class="bg17"><img src="../images/spacer.gif" width="1" height="1"></td>
|
568
|
+
</tr>
|
569
|
+
<tr>
|
570
|
+
<td colspan="3"> </td>
|
571
|
+
</tr>
|
572
|
+
<tr>
|
573
|
+
<td colspan="3">
|
574
|
+
<table align="center">
|
575
|
+
<tr>
|
576
|
+
<td align="right" valign="top"><span class="txt4Bold">Where do you want to <br>
|
577
|
+
ship your order?</span></td>
|
578
|
+
<td> </td>
|
579
|
+
<td>
|
580
|
+
<table border="0" cellspacing="0" cellpadding="0">
|
581
|
+
<tr>
|
582
|
+
<td><input type="radio" name="shipto" value="1" checked></td>
|
583
|
+
<td> Billing Address</td>
|
584
|
+
</tr>
|
585
|
+
<tr>
|
586
|
+
<td><input type="radio" name="shipto" value="2" ></td>
|
587
|
+
<td> Different Address</td>
|
588
|
+
</tr>
|
589
|
+
|
590
|
+
</table>
|
591
|
+
</td>
|
592
|
+
</tr>
|
593
|
+
</table>
|
594
|
+
</td>
|
595
|
+
</tr>
|
596
|
+
<tr>
|
597
|
+
<td colspan="3" class="bg18">
|
598
|
+
|
599
|
+
</td>
|
600
|
+
</tr>
|
601
|
+
|
602
|
+
<tr>
|
603
|
+
<td colspan="3" class="bg18"><img src="../images/spacer.gif" width="1" height="10"></td>
|
604
|
+
</tr>
|
605
|
+
<tr align="right">
|
606
|
+
<td colspan="3" class="bg18"><input type="Image" src="../images/button_continue.gif" width="122" height="29"></td>
|
607
|
+
</tr>
|
608
|
+
<tr>
|
609
|
+
<td> </td>
|
610
|
+
<td> </td>
|
611
|
+
<td> </td>
|
612
|
+
</tr>
|
613
|
+
<tr>
|
614
|
+
<td colspan="3" valign="top"><span class="txt2">*Required Field. Customer order information is processed on a secure server.<br>
|
615
|
+
See <a href="http://www.entertainment.com/jsp/consumer/help/safety_privacy_legal/publications_privacy_policy.jsp" class="link2" target="_blank">Privacy Policy</a>.</span></td>
|
616
|
+
</tr>
|
617
|
+
|
618
|
+
</table>
|
619
|
+
</td></tr>
|
620
|
+
</table>
|
621
|
+
<!-- main body end -->
|
622
|
+
</td>
|
623
|
+
<td class="bg18"><img src="../images/spacer.gif" width="1" height="1"></td>
|
624
|
+
</tr>
|
625
|
+
<tr>
|
626
|
+
<td class="bg18"><img src="../images/corner_grey_bl.gif" width="13" height="13"></td>
|
627
|
+
<td class="bg18"><img src="../images/spacer.gif" width="1" height="1"></td>
|
628
|
+
<td class="bg18"><img src="../images/corner_grey_br.gif" width="13" height="13"></td>
|
629
|
+
</tr>
|
630
|
+
<tr>
|
631
|
+
<td colspan="3">
|
632
|
+
<br>
|
633
|
+
|
634
|
+
<table width="100%">
|
635
|
+
<tr>
|
636
|
+
<td align="right" class="txt2" width="80%">
|
637
|
+
All customer information is processed on a secure server.<br>
|
638
|
+
For more information, read our <a href="http://www.entertainment.com/jsp/consumer/help/safety_privacy_legal/publications_privacy_policy.jsp"><span class=txt2>Privacy Policy</span></a>.
|
639
|
+
</td>
|
640
|
+
<td width="20%">
|
641
|
+
|
642
|
+
|
643
|
+
</td>
|
644
|
+
</tr>
|
645
|
+
</table>
|
646
|
+
|
647
|
+
</td>
|
648
|
+
</tr>
|
649
|
+
</table>
|
650
|
+
|
651
|
+
|
652
|
+
|
653
|
+
|
654
|
+
</form>
|
655
|
+
|
656
|
+
|
657
|
+
|
658
|
+
|
659
|
+
</table>
|
660
|
+
|
661
|
+
|
662
|
+
|
663
|
+
|
664
|
+
|
665
|
+
|
666
|
+
|
667
|
+
</body>
|
668
|
+
</html>
|