-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.js
92 lines (71 loc) · 2.65 KB
/
sample.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
const Utils = require('./lib/TestUtil');
const SlackUtil= require('./lib/SlackUtil');
let s = new SlackUtil();
require('chromedriver');
require('geckodriver');
var assert = require('assert');
const webdriver = require('selenium-webdriver');
const { Builder, By, Key,until } = webdriver;
// const {Builder, By, Key, until , Actions } = require('selenium-webdriver');
const config = {};
config.url = 'https://www.google.co.jp/';
config.outdir = 'ss';
module.exports = async function (browser,path){
s.postText('check Start');
const capabilities = webdriver.Capabilities.chrome();
capabilities.set('chromeOptions', {
args: [
'--headless',
'--no-sandbox',
'--disable-gpu',
`--window-size=1980,1200`
// other chrome options
]
});
driver = await new Builder().forBrowser(browser).withCapabilities(capabilities).build();
let u = new Utils(driver);
(function ( browser ){
test('test001');
}(browser));
// テストその1
async function test(inName){
const scrDir = path;
const name = browser+'_'+inName;
try {
const accounts = u.soql("select id , Name from Account limit 10");
u.log(accounts);
s.postText(accounts);
await driver.get(config.url);
await u.waitForLoadBy(By.name('q'));
u.takeScr(scrDir,name+'-001.jpg');
await driver.findElement(By.name("q")).sendKeys('selenium javascript',Key.ENTER);
await u.takeScr(scrDir,name+'-002.jpg');
await u.waitForLoadBy(By.id('pnnext'));
await u.scrollBy(By.id("pnnext"));
await u.takeScr(scrDir,name+'-003.jpg');
await u.clickBy(By.id("pnnext"));
await u.takeScr(scrDir,name+'-004.jpg');
await u.waitForLoadBy(By.id('pnnext'));
await u.takeScr(scrDir,name+'-005.jpg');
var elmlast = null;
var elements = driver.findElements(By.partialLinkText("Selenium"));
for(let elm of (await elements)) {
elmlast = elm;
}
if(elmlast!= null){
await elmlast.click();
await u.takeScr(scrDir,name+'-006.jpg');
}
console.log(name+ ' done');
}
catch(err){
u.log(err);
s.postText(err.stack);
console.log(name+ ' fault');
}
finally {
await driver.quit();
}
s.postText('check finish');
}
}