We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 315b7cf commit df15086Copy full SHA for df15086
bzt/modules/_selenium.py
@@ -324,7 +324,7 @@ def _get_installed_chrome_milestone(self):
324
match = re.fullmatch(".*Chrome ([0-9]+)(\\.[0-9]+)+[\r\n\t ]*", out)
325
if match:
326
detected_version = match.group(1)
327
- self.log.info(f"Found chrome major version: {detected_version}")
+ self.log.debug(f"Chrome major version (milestone): {detected_version}")
328
return detected_version
329
except Exception as e:
330
pass
0 commit comments