-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinishline.js
182 lines (134 loc) · 4.28 KB
/
finishline.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
// casperjs finishline.js --engine=slimerjs --ssl-protocol=TLSv1
var casper = require("casper").create({
onRunComplete: function() {
// Don't exit on complete.
}
});
casper.options.viewportSize = {
width: 1200,
height: 950
};
casper.options.waitTimeout = 999999;
//YEEZY
var url = 'http://www.finishline.com/store/catalog/product.jsp?&productId=prod789891&utm_medium=affiliate&utm_source=linkshare&utm_campaign=program_level&siteID=je6NUbpObpQ-FLnKKUooqb6RBHzob5pOgg';
//test url
//var url = 'http://www.finishline.com/store/catalog/product.jsp?productId=prod763735';
var pwd = 'password1';
casper.start(url, function() {
this.echo(this.getTitle());
});
casper.then(function() {
casper.evaluate(function() {
console.log('inside size click');
//this.clickLabel('10.0', '.size');
//document.querySelector("[data-modelsize='10_0']").click();
var aTags = document.getElementsByClassName("size");
var searchText = "10.0";
var found;
for (var i = 0; i < aTags.length; i++) {
if (aTags[i].textContent == searchText) {
found = aTags[i];
break;
}
}
found.click();
});
});
// casper.wait(1000, function() {
// this.echo("I've waited for 1 seconds.");
// });
casper.thenClick('#buttonAddToCart', function() {
this.echo('add to cart clicked');
});
// casper.wait(1000, function() {
// this.echo("I've waited for 1 seconds.");
// });
casper.waitUntilVisible(".ui-dialog.ui-widget.ui-widget-content.ui-corner-all.global-modal.ui-draggable.ui-resizable", function() {
this.echo('add to cart modal is visible.');
});
casper.thenClick('#addToCartModalContent .shoppingInfo .btn', function() {
this.echo('view full cart');
});
// casper.wait(1000, function() {
// this.echo("I've waited for 1 seconds after checkout review clicked.");
// });
casper.thenClick('#checkoutButtonTop > .btn-primary.leftArrow', function() {
this.echo('cart checkout ... now onto secure page');
});
//Below this starts checkout page logic
//----------
//
// casper.wait(1000, function() {
// this.echo("waiting 1 seconds to fill out login form.");
// });
casper.then(function() {
this.fillSelectors('#loginForm', {
'input[name="email"]': '[email protected]',
'input[name="password"]': pwd
}, false);
});
//clicks hidden button
//otherwise, click real btn by doing .buttonSection .btn-primary.leftArrow
casper.thenClick('.buttonSection .btn-primary.leftArrow', function() {
this.echo('login clicked');
});
// casper.wait(500, function() {
// this.echo("waiting .5 seconds to check the copy address checkbox.");
// });
casper.waitUntilVisible(".deliveryleftSection", function() {
this.echo('delivery section is visible.');
});
casper.then(function() {
this.fillSelectors('.billingCheckBox.typeCheckBox', {
'input[name="copyNewAddrToBilling"]': true,
}, false);
});
casper.thenClick('#shippingContinue', function() {
this.echo('continue to billing');
});
casper.then(function() {
this.fillSelectors('#billing_credit_card', {
'input[name="creditCardNumberTemp"]': '1234567891234567',
'input[name="securityCodeTemp"]': '123'
}, false);
});
// casper.wait(1000, function() {
// this.echo("waiting 1 seconds to fill out month field.");
// });
// 'input[name="expirationMonthTemp"]': '08',
// 'input[name="expirationYearTemp"]': '2015',
casper.then(function() {
casper.evaluate(function() {
console.log('inside thenEval for month select');
document.getElementById('expirationMonthTemp').value = "08";
});
});
casper.then(function() {
casper.evaluate(function() {
console.log('inside thenEval for month select');
document.getElementById('expirationYearTemp').value = "2015";
});
});
casper.then(function() {
this.evaluate(function() {
window.scrollTo(0, document.body.scrollHeight);
});
});
// casper.thenEvaluate(function(){
// console.log('inside thenEval for month select');
// console.log($('#expirationMonthTemp'));
// var $select = $('#expirationMonthTemp');
// var _option = '08';
// $select.val(_option);
// $select.change();
//
// });
casper.thenClick('#js-review-order', function() {
this.echo("review order btn clicked");
});
casper.then(function() {
this.wait(10000000, function() {
this.echo("I've waited for 10000 second.");
});
});
casper.run();