@@ -121,7 +121,7 @@ public static void closeDriver() {
121
121
BFLogger .logDebug ("Closing WebDriver for this thread. " + RuntimeParametersSelenium .BROWSER .getValue ());
122
122
driver .quit ();
123
123
} catch (WebDriverException e ) {
124
- BFLogger .logDebug ("Ooops! Something went wrong while closing the driver: " );
124
+ BFLogger .logError ("Ooops! Something went wrong while closing the driver: " );
125
125
e .printStackTrace ();
126
126
} finally {
127
127
DRIVERS .remove ();
@@ -176,7 +176,7 @@ private static <T extends RemoteWebDriver> void downloadNewestOrGivenVersionOfWe
176
176
BFLogger .logDebug ("Downloaded version of driver=" + WebDriverManager .getInstance (webDriverType ).getDownloadedDriverVersion ());
177
177
178
178
} catch (WebDriverManagerException e ) {
179
- BFLogger .logInfo ("Unable to download driver automatically. "
179
+ BFLogger .logError ("Unable to download driver automatically. "
180
180
+ "Please try to set up the proxy in properties file. "
181
181
+ "If you want to download them manually, go to the "
182
182
+ "http://www.seleniumhq.org/projects/webdriver/ site." );
@@ -190,7 +190,7 @@ public static ChromeOptions getChromeOptions() {
190
190
chromePrefs .put ("profile.default_content_setting_values.notifications" , 2 );
191
191
192
192
RuntimeParametersSelenium .BROWSER_OPTIONS .getValues ().forEach ((key , value ) -> {
193
- BFLogger .logInfo ("Add to Chrome prefs: " + key + " = " + value .toString ());
193
+ BFLogger .logDebug ("Add to Chrome prefs: " + key + " = " + value .toString ());
194
194
chromePrefs .put (key , value .toString ());
195
195
});
196
196
@@ -209,7 +209,7 @@ public static ChromeOptions getChromeOptions() {
209
209
options .setHeadless (Boolean .parseBoolean (System .getProperty ("headless" , "false" )));
210
210
211
211
RuntimeParametersSelenium .BROWSER_OPTIONS .getValues ().forEach ((key , value ) -> {
212
- BFLogger .logInfo ("Add to Chrome options: " + key + " = " + value .toString ());
212
+ BFLogger .logDebug ("Add to Chrome options: " + key + " = " + value .toString ());
213
213
String item = (value .toString ().isEmpty ()) ? key : key + "=" + value ;
214
214
options .addArguments (item );
215
215
options .setCapability (key , value .toString ());
@@ -225,7 +225,7 @@ public static EdgeOptions getEdgeOptions() {
225
225
edgePrefs .put ("profile.default_content_setting_values.notifications" , 2 );
226
226
227
227
RuntimeParametersSelenium .BROWSER_OPTIONS .getValues ().forEach ((key , value ) -> {
228
- BFLogger .logInfo ("Add to Edge prefs: " + key + " = " + value .toString ());
228
+ BFLogger .logDebug ("Add to Edge prefs: " + key + " = " + value .toString ());
229
229
edgePrefs .put (key , value .toString ());
230
230
});
231
231
@@ -244,7 +244,7 @@ public static EdgeOptions getEdgeOptions() {
244
244
options .setHeadless (Boolean .parseBoolean (System .getProperty ("headless" , "false" )));
245
245
246
246
RuntimeParametersSelenium .BROWSER_OPTIONS .getValues ().forEach ((key , value ) -> {
247
- BFLogger .logInfo ("Add to Edge options: " + key + " = " + value .toString ());
247
+ BFLogger .logDebug ("Add to Edge options: " + key + " = " + value .toString ());
248
248
String item = (value .toString ().isEmpty ()) ? key : key + "=" + value ;
249
249
options .addArguments (item );
250
250
options .setCapability (key , value .toString ());
@@ -277,7 +277,7 @@ public static FirefoxOptions getFirefoxOptions() {
277
277
profile .setPreference ("network.http.use-cache" , false );
278
278
279
279
RuntimeParametersSelenium .BROWSER_OPTIONS .getValues ().forEach ((key , value ) -> {
280
- BFLogger .logInfo ("Add to Firefox profile: " + key + " = " + value .toString ());
280
+ BFLogger .logDebug ("Add to Firefox profile: " + key + " = " + value .toString ());
281
281
profile .setPreference (key , value .toString ());
282
282
});
283
283
@@ -294,7 +294,7 @@ public static FirefoxOptions getFirefoxOptions() {
294
294
options .setHeadless (Boolean .parseBoolean (System .getProperty ("headless" , "false" )));
295
295
296
296
RuntimeParametersSelenium .BROWSER_OPTIONS .getValues ().forEach ((key , value ) -> {
297
- BFLogger .logInfo ("Add to Firefox options: " + key + " = " + value .toString ());
297
+ BFLogger .logDebug ("Add to Firefox options: " + key + " = " + value .toString ());
298
298
String item = (value .toString ().isEmpty ()) ? key : key + "=" + value ;
299
299
options .addArguments (item );
300
300
options .setCapability (key , value .toString ());
@@ -311,7 +311,7 @@ public static InternetExplorerOptions getInternetExplorerOptions() {
311
311
options .setCapability ("acceptSslCerts" , true );
312
312
313
313
RuntimeParametersSelenium .BROWSER_OPTIONS .getValues ().forEach ((key , value ) -> {
314
- BFLogger .logInfo ("Add to Internet Explorer options: " + key + " = " + value .toString ());
314
+ BFLogger .logDebug ("Add to Internet Explorer options: " + key + " = " + value .toString ());
315
315
options .setCapability (key , value .toString ());
316
316
});
317
317
@@ -475,7 +475,7 @@ private static INewWebDriver getRemoteDriver(MutableCapabilities options) {
475
475
}
476
476
477
477
RuntimeParametersSelenium .BROWSER_OPTIONS .getValues ().forEach ((key , value ) -> {
478
- BFLogger .logInfo ("Browser option: " + key + " " + value .toString ());
478
+ BFLogger .logDebug ("Browser option: " + key + " " + value .toString ());
479
479
capabilities .setCapability (key , value .toString ());
480
480
});
481
481
0 commit comments