Đã 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
Vậy là chúng ta đã có cách disable browser notification with selenium.FirefoxProfile ffprofile = new FirefoxProfile(); ffprofile.setPreference("dom.webnotifications.enabled", false); WebDriver driver = new FirefoxDriver(ffprofile); driver.get("https://adayroi.com");
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