-
Notifications
You must be signed in to change notification settings - Fork 1
/
dockerPageAutoLiker.java
87 lines (64 loc) · 2.18 KB
/
dockerPageAutoLiker.java
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
package com.example.chromeless;
import java.net.URL;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.remote.RemoteWebDriver;
public class dockerPageAutoLiker {
public static void main(String[] args) {
series();parallel();
}
static void series(){
// TODO Auto-generated method stub
for(int i=1;i<100;i++) {
try {
// TODO Auto-generated method stub
ChromeOptions capabilities = new ChromeOptions();
capabilities.addArguments("--no-sandbox");
capabilities.addArguments("--disable-dev-shm-usage");
capabilities.addArguments("--incognito");
RemoteWebDriver driver = new RemoteWebDriver
(new URL("http://localhost:4444/wd/hub"),capabilities);
driver.get("https://docs.docker.com/get-started/");
WebElement webElement=driver.findElement(By.id("PDRTJS_8453675_nero_1"));
webElement.click();
driver.close();
}
catch (Exception e) {
e.printStackTrace();
}
}
}
static void parallel(){
// TODO Auto-generated method stub
for(int i=1;i<100;i++) {
try {
Thread t1=new Thread(new Runnable() {
@Override
public void run() {
try {
// TODO Auto-generated method stub
ChromeOptions capabilities = new ChromeOptions();
capabilities.addArguments("--no-sandbox");
capabilities.addArguments("--disable-dev-shm-usage");
capabilities.addArguments("--incognito");
RemoteWebDriver driver = new RemoteWebDriver
(new URL("http://localhost:4444/wd/hub"),capabilities);
driver.get("https://docs.docker.com/get-started/");
WebElement webElement=driver.findElement(By.id("PDRTJS_8453675_nero_1"));
webElement.click();
driver.close();
}
catch (Exception e) {
e.printStackTrace();
}
}
});t1.start();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}