diff --git a/src/service/NavigateService.js b/src/service/NavigateService.js index 8710511..08c6a92 100644 --- a/src/service/NavigateService.js +++ b/src/service/NavigateService.js @@ -8,7 +8,7 @@ class NavigateService { constructor() { this.config = { browser: 'chrome', - hub: 'http://spiduler-chrome:4444/wd/hub', + hub: 'http://bro-chrome:4444/wd/hub', capabilities: Capabilities.chrome(), browserArgs: ['--no-sandbox', '--headless', '--disable-dev-shm-usage'] } diff --git a/src/service/PoolingService.js b/src/service/PoolingService.js index 1e9103d..56cd3be 100644 --- a/src/service/PoolingService.js +++ b/src/service/PoolingService.js @@ -10,7 +10,7 @@ class PoolingService { this.config = { pool: { max: 10, min: 1, testOnBorrow: true }, browser: 'chrome', - browserArgs: ['--no-sandbox', '--headless', '--disable-dev-shm-usage', '--proxy-server=spiduler-tor:8118'] + browserArgs: ['--no-sandbox', '--headless', '--disable-dev-shm-usage', '--proxy-server=bro-tor:8118'] } this.pool = this.createPool() } @@ -68,7 +68,7 @@ class PoolingService { let capabilities = Capabilities.chrome() opts.addArguments(this.config.browserArgs) return new Builder() - .usingServer('http://spiduler-chrome:4444/wd/hub') + .usingServer('http://bro-chrome:4444/wd/hub') .withCapabilities(capabilities) .forBrowser(this.config.browser) .setChromeOptions(opts)