generate radmon actions

This commit is contained in:
Lei PAN
2024-02-21 15:29:32 +01:00
parent 81727f42b8
commit 8402640a56
3 changed files with 75 additions and 33 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ const SEVEN_DAYS_IN_S = 3600 * 24 * 7;
const NINETY_DAYS_IN_S = 30 * 3; const NINETY_DAYS_IN_S = 30 * 3;
let excelUtil = new ExcelUtil(); let excelUtil = new ExcelUtil();
let collectionName = formatDate(new Date()) let collectionName = formatDate(new Date())
let excludeMode = DeviceExcludeMode.SIX let excludeMode = DeviceExcludeMode.THREE
let three_to_excludes = ["bec11752", "4e8ca027", "hi7ljr5xduyt9pfi", "EPHUT20825001518"] let three_to_excludes = []
let four_to_excludes = ["bec11752", "4e8ca027", "hi7ljr5xduyt9pfi", "EPHUT20825001518"] let four_to_excludes = ["bec11752", "4e8ca027", "hi7ljr5xduyt9pfi", "EPHUT20825001518"]
let seven_to_excludes = ["4e8ca027", "hi7ljr5xduyt9pfi", "EPHUT20825001518", "bec11752", "fuljaueqguugf6pn", "EPHUT20825001518"] let seven_to_excludes = ["4e8ca027", "hi7ljr5xduyt9pfi", "EPHUT20825001518", "bec11752", "fuljaueqguugf6pn", "EPHUT20825001518"]
let six_to_excludes = ["4e8ca027", "hi7ljr5xduyt9pfi", "EPHUT20825001518", "bec11752", "07fbd156", "NFD669QK8XNFSCNN", "6X494TTWQGFALB79", "71a0371d", "YP6HVKLFE67T598L"] let six_to_excludes = ["4e8ca027", "hi7ljr5xduyt9pfi", "EPHUT20825001518", "bec11752", "07fbd156", "NFD669QK8XNFSCNN", "6X494TTWQGFALB79", "71a0371d", "YP6HVKLFE67T598L"]
+69 -27
View File
@@ -71,6 +71,8 @@ function logWithDevice(message, device) {
appointmentLogger.log({level: "info", message: device.model() + ":" + device.serial() + ":" + message}) appointmentLogger.log({level: "info", message: device.model() + ":" + device.serial() + ":" + message})
} }
const searchTexts = ['hermes+rdv+online+paris', 'hermes+rdv+enligne+paris', 'hermes+rdv+en+ligne+paris', 'hermes+rendezvous+en+ligne+paris', 'hermes+appointment+online+paris', 'hermes+appointment+online+paris', 'appointment+hermes+paris+on+line', 'hermes+rendez+vous+online+paris', 'hermes+rendez+vous+paris+en+ligne', 'hermes+rendez+vous+paris+enligne', 'hermes+rendez+vous+paris+online', 'online+appointment+hermes+paris', 'hermes+online+appointment+paris', 'paris+hermes+online+appointment']
class CommandorPage { class CommandorPage {
constructor(contact, device, sender, mongoManager, selectedStore = DEFAULT_STORE, audioAnalyse = false, alertBeep = false, port = 9000) { constructor(contact, device, sender, mongoManager, selectedStore = DEFAULT_STORE, audioAnalyse = false, alertBeep = false, port = 9000) {
this.contact = contact; this.contact = contact;
@@ -94,6 +96,15 @@ class CommandorPage {
this.isAlreadyRefresh = false; this.isAlreadyRefresh = false;
} }
async openGoogle() {
const item = searchTexts[Math.floor(Math.random() * searchTexts.length)];
// await this.page.goto("https://www.google.com/search?q=" + item + "&lr=lang_en", {timeout: 30 * 1000});
await openUrlWithAdb("https://www.google.com/search?q=" + item + "&lr=lang_en", this.device)
await delay(5 * 1000)
await this.acceptCookies();
}
async connect_to_browser(ocrResult) { async connect_to_browser(ocrResult) {
console.log("connect_to_browser() called"); console.log("connect_to_browser() called");
if (this.browser === undefined) { if (this.browser === undefined) {
@@ -145,18 +156,25 @@ class CommandorPage {
async generateRandomActions() { async generateRandomActions() {
logWithDevice("will reload page", this.device) logWithDevice("will reload page", this.device)
await this.handleBraveSkipBtn() let limit = getRandom() + 1
await delay(1000);
let cmd = "input swipe 382 482 382 1682"
logWithDevice("will send cmd:" + cmd, this.device)
this.device.shell(cmd);
await delay(2000);
let limit = getRandom()
for (let i = 1; i <= limit; i++) { for (let i = 1; i <= limit; i++) {
this.device.shell(cmd); let tapX = 300 + getRandom() * 100 + getRandom() * 10 + getRandom()
await delay(1000); let tapY = 400 + getRandom() * 100 + getRandom() * 10 + getRandom()
await this.tapForDevice(this.device, tapX, tapY)
// await this.inputForDevice(this.device, getRandom() + "")
await delay(getRandomWaitTime());
} }
await this.clickOnConfirmBtn(); for (let i = 1; i <= limit; i++) {
let x = 350 + getRandom() * 100
let y0 = 600 + getRandom() * 100 + getRandom() * 10 + getRandom() * 1
let swipCmd = "input swipe " + x + " " + y0 + " " + x + " 1522"
logWithDevice("will send cmd:" + swipCmd, this.device)
this.device.shell(swipCmd);
await delay(3 * getRandomWaitTime());
}
// await this.openGoogle()
// await delay(3 * getRandomWaitTime());
// await this.clickOnConfirmBtn();
await this.checkResultWithOcr(); await this.checkResultWithOcr();
} }
@@ -245,8 +263,27 @@ class CommandorPage {
async acceptCookies() { async acceptCookies() {
logWithDevice("will accept Cookies", this.device); logWithDevice("will accept Cookies", this.device);
if (this.browser.isConnected() && !this.page.isClosed()) { await this.connectBrowserIfNecessary()
if (!this.isTerminated && this.browser.isConnected()) {
try { try {
logWithDevice("get pages", this.device)
// add listeners
let pages = await timeout(this.browser.pages(), 5 * 1000);
pages.forEach((currentPage) => {
if (currentPage.url().includes("google")) {
this.page = currentPage;
} else {
try {
if (!this.isTerminated)
currentPage.close()
} catch (e) {
console.log(e)
}
}
})
logWithDevice("this.page.bringToFront();", this.device)
await this.page.bringToFront();
await delay(2 * 1000);
await this.page.evaluate(() => { await this.page.evaluate(() => {
let buttons = document.getElementsByTagName('button'); let buttons = document.getElementsByTagName('button');
for (let i = 0; i < buttons.length; i++) { for (let i = 0; i < buttons.length; i++) {
@@ -261,7 +298,6 @@ class CommandorPage {
} catch (e) { } catch (e) {
console.log(e) console.log(e)
} }
} }
} }
@@ -799,7 +835,7 @@ class CommandorPage {
} }
async connectBrowserIfNecessary() { async connectBrowserIfNecessary() {
if (!this.browser.isConnected()) { if (this.browser == undefined || !this.browser.isConnected()) {
try { try {
this.browser = await puppeteer.connect({ this.browser = await puppeteer.connect({
browserWSEndpoint: "ws://127.0.0.1:" + this.port + "/devtools/browser", browserWSEndpoint: "ws://127.0.0.1:" + this.port + "/devtools/browser",
@@ -1159,6 +1195,12 @@ class CommandorPage {
await exec(cmd); await exec(cmd);
} }
async inputForDevice(device, text) {
let cmd = `adb -s ${device.serial()} shell input text ${text}`
logWithDevice("cmd is " + cmd, this.device)
await exec(cmd);
}
async clickOnConfirmBtn() { async clickOnConfirmBtn() {
if (this.device.model() === "CPH2219") { if (this.device.model() === "CPH2219") {
this.device.shell("input tap " + 900 + " " + 1532) this.device.shell("input tap " + 900 + " " + 1532)
@@ -1232,21 +1274,21 @@ class CommandorPage {
async enableDisableAirPlanMode() { async enableDisableAirPlanMode() {
logWithDevice("will enable/disable airplane mode", this.device) logWithDevice("will enable/disable airplane mode", this.device)
// try { try {
// // await this.device.shell("cmd connectivity airplane-mode enable") // await this.device.shell("cmd connectivity airplane-mode enable")
// await exceutShellCmd(this.device, "cmd connectivity airplane-mode enable") await exceutShellCmd(this.device, "cmd connectivity airplane-mode enable")
// await delay(1000) await delay(1000)
// await exceutShellCmd(this.device, "cmd connectivity airplane-mode disable") await exceutShellCmd(this.device, "cmd connectivity airplane-mode disable")
// // await this.device.shell("cmd connectivity airplane-mode disable")
// await delay(2000)
// } catch (e) {
// try {
// await this.device.shell("cmd connectivity airplane-mode disable") // await this.device.shell("cmd connectivity airplane-mode disable")
// } catch (e) { await delay(2000)
// console.log(e) } catch (e) {
// } try {
// console.log(e) await this.device.shell("cmd connectivity airplane-mode disable")
// } } catch (e) {
console.log(e)
}
console.log(e)
}
} }
async tapGoogleDisconnectBtn() { async tapGoogleDisconnectBtn() {
+3 -3
View File
@@ -114,6 +114,9 @@ class OCRChecker {
return OCRResult.FILL_FIELD return OCRResult.FILL_FIELD
} else if (result.includes(CAPTCHA_ERROR_MESSAGE) || result.includes(CAPTCHA_ERROR_MESSAGE_FR)) { } else if (result.includes(CAPTCHA_ERROR_MESSAGE) || result.includes(CAPTCHA_ERROR_MESSAGE_FR)) {
return OCRResult.RECAPTCHA_ERROR return OCRResult.RECAPTCHA_ERROR
} else if (result.includes(BRAVE_SKIP_PUB) || result.includes(BRAVE_SKIP_PUB_2) || result.includes(BRAVE_SKIP_PUB_3) || result.includes(BRAVE_SKIP_PUB_4) || result.includes(BRAVE_SKIP_PUB_5)) {
await this.deleteFile(fileName)
return OCRResult.BRAVE_PRIVACY_PUB
} else if (result.includes(BLOCKED_MSG_EN) || result.includes(BLOCKED_MSG_FR) || result.includes(BLOCKED_MSG_FR_2) || result.includes(BLOCKED_MSG_FR_3)) { } else if (result.includes(BLOCKED_MSG_EN) || result.includes(BLOCKED_MSG_FR) || result.includes(BLOCKED_MSG_FR_2) || result.includes(BLOCKED_MSG_FR_3)) {
await this.deleteFile(fileName) await this.deleteFile(fileName)
return OCRResult.BLOCKED return OCRResult.BLOCKED
@@ -127,9 +130,6 @@ class OCRChecker {
} else if (result.includes(BRAVE_NOTIFICATION)) { } else if (result.includes(BRAVE_NOTIFICATION)) {
await this.deleteFile(fileName) await this.deleteFile(fileName)
return OCRResult.BRAVE_NOTIFICATION return OCRResult.BRAVE_NOTIFICATION
} else if (result.includes(BRAVE_SKIP_PUB) || result.includes(BRAVE_SKIP_PUB_2) || result.includes(BRAVE_SKIP_PUB_3) || result.includes(BRAVE_SKIP_PUB_4) || result.includes(BRAVE_SKIP_PUB_5)) {
await this.deleteFile(fileName)
return OCRResult.BRAVE_PRIVACY_PUB
} else if (result.includes(SLIDING_CAPTCHA_FR) || result.includes(SLIDING_CAPTCHA_FR_2) || result.includes(SLIDING_CAPTCHA_FR_3) || result.includes(SLIDING_CAPTCHA_FR_4) || result.includes(SLIDING_CAPTCHA_FR_5) || result.includes(SLIDING_CAPTCHA_FR_6)) { } else if (result.includes(SLIDING_CAPTCHA_FR) || result.includes(SLIDING_CAPTCHA_FR_2) || result.includes(SLIDING_CAPTCHA_FR_3) || result.includes(SLIDING_CAPTCHA_FR_4) || result.includes(SLIDING_CAPTCHA_FR_5) || result.includes(SLIDING_CAPTCHA_FR_6)) {
await this.deleteFile(fileName) await this.deleteFile(fileName)
if (result.includes(SLIDING_CAPTCHA_LOADING_FR)) { if (result.includes(SLIDING_CAPTCHA_LOADING_FR)) {