Reputation: 1
I want to disable the Zoom popup that asks to open the app when joining a meeting and stay on the browser. I have tried different flags but haven't been able to disable the popup. how disable this popup
this is the code in js i am using right now :
async function getChromeDriver() {
const options = new Options({});
options.addArguments("--disable-blink-features=AutomationControlled");
options.addArguments("--use-fake-ui-for-media-stream");
options.addArguments("--window-size=1080,720");
options.addArguments("--auto-select-desktop-capture-source=[RECORD]");
options.addArguments("--auto-select-desktop-capture-source=[RECORD]");
options.addArguments("--enable-usermedia-screen-capturing");
options.addArguments('--auto-select-tab-capture-source-by-title="Meet"');
options.addArguments("--allow-running-insecure-content");
options.addArguments("--disable-user-media-security=true");
options.addArguments("--disable-popup-blocking");
// --allow-file-access-from-files--use-fake-device-for-media-stream--allow-running-insecure-content--allow-file-access-from-files--use-fake-device-for-media-stream--allow-running-insecure-content
let driver = await new Builder()
.forBrowser(Browser.CHROME)
.setChromeOptions(options)
.build();
return driver;
}
export default getChromeDriver;
i tried this code in js:
const options = new Options({});
options.addArguments("--disable-blink-features=AutomationControlled");
options.addArguments("--use-fake-ui-for-media-stream");
options.addArguments("--window-size=1080,720");
options.addArguments("--auto-select-desktop-capture-source=[RECORD]");
options.addArguments("--auto-select-desktop-capture-source=[RECORD]");
options.addArguments("--enable-usermedia-screen-capturing");
options.addArguments('--auto-select-tab-capture-source-by-title="Meet"');
options.addArguments("--allow-running-insecure-content");
options.addArguments("--disable-user-media-security=true");
options.addArguments("--disable-popup-blocking");
// --allow-file-access-from-files--use-fake-device-for-media-stream--allow-running-insecure-content--allow-file-access-from-files--use-fake-device-for-media-stream--allow-running-insecure-content
let driver = await new Builder()
.forBrowser(Browser.CHROME)
.setChromeOptions(options)
.build();
return driver;
i want to disable the popup or click cancel through selenium.
Upvotes: 0
Views: 17