Skip to content

Commit 1514236

Browse files
Remove noisy debug statement
1 parent 8d18ec1 commit 1514236

File tree

1 file changed

+1
-2
lines changed
  • deps/rabbitmq_management/selenium/test/pageobjects

1 file changed

+1
-2
lines changed

deps/rabbitmq_management/selenium/test/pageobjects/BasePage.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ module.exports = class BasePage {
2323
this.driver = webdriver
2424
this.timeout = parseInt(process.env.SELENIUM_TIMEOUT) || 1000 // max time waiting to locate an element. Should be less that test timeout
2525
this.polling = parseInt(process.env.SELENIUM_POLLING) || 500 // how frequent selenium searches for an element
26-
this.interactionDelay = parseInt(process.env.SELENIUM_INTERACTION_DELAY) || 0 // slow down interactions (when rabbit is behind a http proxy)
27-
console.log("Interaction Delay : " + this.interactionDelay)
26+
this.interactionDelay = parseInt(process.env.SELENIUM_INTERACTION_DELAY) || 0 // slow down interactions (when rabbit is behind a http proxy)
2827
}
2928

3029

0 commit comments

Comments
 (0)