This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportal-ui-check1-2-multibrowsers.js
194 lines (172 loc) · 7.8 KB
/
portal-ui-check1-2-multibrowsers.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
183
184
185
186
187
188
189
190
191
192
193
194
const playwright = require('playwright');
const fs = require('fs');
const process = require('process');
(async () => {
// start する前に config を read する。node だからできること。
// ほかコマンドラインのパラメーターの受け渡しも可能
// inputjson, url, user, password, browsers, --head, --notification
// repository でまとめて管理
let inputjson = ''
let headlessflag = true
let baseURL = ''
let user = ''
let userpassword = ''
let notification = false
let tryBrowserTypes = ''
for (let i = 0; i < process.argv.length; i++) {
let arg = process.argv[i];
console.log(arg);
if (arg.includes('inputjson')) {
inputjson = arg.split("=")[1];
}
if (arg.includes('url')) {
baseURL = arg.split("=")[1];
}
if (arg.includes('user')) {
user = arg.split("=")[1];
}
if (arg.includes('password')) {
userpassword = arg.split("=")[1];
}
if (arg.includes("--head")) {
headlessflag = false;
}
if (arg.includes("--notification")) {
notification = true;
}
if (arg.includes("browsers")) {
tryBrowserTypes = arg.split("=")[1]
}
}
const browserTypes = tryBrowserTypes.split(",")
if (inputjson !== '') {
let fileContents = fs.readFileSync(inputfile, 'utf8');
let config = JSON.parse(fileContents);
baseURL = config.initialurl
user = config.user
userpassword = config.userpassword
notification = config.notification
}
for (const browserType of browserTypes){
let scshocnt = 0
const browser = await playwright[browserType].launch({
headless: headlessflag,
slowMo: 3000
});
const context = await browser.newContext({
locale: 'ja-JP',
ignoreHTTPSErrors: true
});
// 結果的に、変な class つけられてることになるので、そこを追うくらいなら、
// 自動で走らせることを考えれば waittimeout で時間をおいておけばいい気もしてきたな・・・
// Open new page
const page = await context.newPage();
// Go to https://agent1081final.esrij.com/portal/home/
await page.goto(baseURL+'/home/');
await page.route(baseURL + '/home/pages/Account/accept_conditions.html#client_id=arcgisonline&redirect_url=' + baseURL + '/home/', route => route.abort());
// Click text="OK"
await page.waitForTimeout(3000);
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// ログインメッセージがある場合
if (notification) {
await page.click('text="OK"');
};
// Login Phase
// Click text="サイン イン"
await page.click('text="サイン イン"');
// Fill input[aria-label="ユーザー名"]
await page.waitForSelector('button#signIn', { state: 'visible' });
await page.fill('input[aria-label="ユーザー名"]', user);
// Press Tab
await page.press('input[aria-label="ユーザー名"]', 'Tab');
// Fill input[aria-label="パスワード"]
await page.fill('input[aria-label="パスワード"]', userpassword);
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click text="サイン イン"
await page.click('text="サイン イン"');
// **
// 組織の設定一覧表示 START
// **
// What happened without await syntax...
page.click('//a[normalize-space(.)=\'設定\' and normalize-space(@role)=\'tab\']');
// Click text="ホーム ページ"
await page.click('text="ホーム ページ"');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click div[id="main-content-area"] >> text="ギャラリー"
await page.click('div[id="main-content-area"] >> text="ギャラリー"');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=gallery#settings');
await page.click('div[id="main-content-area"] >> text="全般"');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click div[id="main-content-area"] >> text="マップ"
await page.click('div[id="main-content-area"] >> text="マップ"');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=map#settings');
// Click text="アイテム"
await page.click('text="アイテム"');
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=items#settings');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click div[id="main-content-area"] >> text="グループ"
await page.click('div[id="main-content-area"] >> text="グループ"');
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=groups#settings');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click text="ユーティリティ サービス"
await page.click('text="ユーティリティ サービス"');
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=utilityServices#settings');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click text="ArcGIS Online"
await page.click('text="ArcGIS Online"');
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=agol#settings');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// scroll page
await page.evaluate(() => window.scrollTo(0, document.body.scrollHeight));
// Click text="サーバー"
await page.click('text="サーバー"');
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=servers#settings');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click text="メンバー ロール"
await page.click('text="メンバー ロール"');
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=memberRoles#settings');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click text="新しいメンバーのデフォルト設定"
await page.click('text="新しいメンバーのデフォルト設定"');
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=newMemberDefaults#settings');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click text="コラボレーション"
await page.click('text="コラボレーション"');
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=collaborations#settings');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click text="セキュリティ"
await page.click('text="セキュリティ"');
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=security#settings');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// Click text="組織エクステンション"
await page.click('text="組織エクステンション"');
// assert.equal(page.url(), baseURL + '/home/organization.html?tab=orgExtensions#settings');
await page.screenshot({ path: './'+ browserType + scshocnt+'.png', fullPage: true });
scshocnt += 1;
// **
// 組織の設定一覧表示 END
// **
// Close page
await page.close();
// ---------------------
await context.close();
await browser.close();
}
})();