Browser Notification with Selenium - Xử lý thông báo của trình duyệt

Chào các bạn, tối nay chúng ta lại gặp nhau!
Đã bao giờ bạn cảm thấy khó chịu khi vào 1 web mà nó show thông báo kiểu này lên chưa?



Trong bài viết này, chúng ta sẽ tìm cách disable Browser Notification  trong selenium nhé!

1. Với Chrome
chúng ta dùng code sau để khai báo driver khi dùng chrome và Java
ChromeOptions options = new ChromeOptions();
options.addArguments("--disable-notifications");
WebDriver driver = new ChromeDriver(options);
driver.get("https://adayroi.com");
2. Với Firefox
FirefoxProfile ffprofile = new FirefoxProfile();
ffprofile.setPreference("dom.webnotifications.enabled", false);
WebDriver driver = new FirefoxDriver(ffprofile);
driver.get("https://adayroi.com");
Vậy là chúng ta đã có cách disable browser notification with selenium.
Hẹn gặp các bạn trong các bài sau!

Nguồn: sưu tầm trên linkedin

0 comments:

Post a Comment