Обновление менеджера Webdriver не может загрузить Geckodriver - PullRequest
0 голосов
/ 20 марта 2020

Я пытаюсь настроить транспортир для моего angular приложения автоматизации. Я на Node версии 12, я установил транспортир версии 5.4.3. Когда я использую обновление webdriver-manger --proxy = blahblahproxy.com, я вижу ошибку ниже.

[13:37:06] I/config_source - curl -oC:\Users\******\AppData\Roaming\npm\node_modules\protractor\node_modules\webdriver-manager\selenium\gecko-response.json '**corpproxy**/repos/mozilla/geckodriver/releases' -H 'host:api.github.com'
(node:15904) UnhandledPromiseRejectionWarning: Error: response status code is not 200.  It was 407
    at Request.<anonymous> (C:\Users\*****\AppData\Roaming\npm\node_modules\protractor\node_modules\webdriver-manager\built\lib\binaries\config_source.js:181:28)
    at Request.emit (events.js:311:20)
    at Request.onRequestResponse (C:\Users\*****\AppData\Roaming\npm\node_modules\protractor\node_modules\request\request.js:1059:10)
    at ClientRequest.emit (events.js:311:20)
    at HTTPParser.parserOnIncomingClient [as onIncoming] (_http_client.js:603:27)
    at HTTPParser.parserOnHeadersComplete (_http_common.js:119:17)
    at Socket.socketOnData (_http_client.js:476:22)
    at Socket.emit (events.js:311:20)
    at addChunk (_stream_readable.js:294:12)
    at readableAddChunk (_stream_readable.js:275:11)
(node:15904) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:15904) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.


Chrome and selenium standlaone server are updated/downlaoded just fine 

when i do webdriver-manager status
[13:39:39] I/status - selenium standalone version available: 3.141.59
[13:39:39] I/status - chromedriver version available: 80.0.3987.106
[13:39:39] I/status - geckodriver is not present
[13:39:39] I/status - IEDriverServer is not present
[13:39:39] I/status - android-sdk is not present
[13:39:39] I/status - appium is not present

1 Ответ

0 голосов
/ 21 марта 2020

В корпоративных прокси-серверах мы столкнемся с подобными проблемами.

Требуемая проверка подлинности прокси-сервера 407 - это код состояния ответа HTTP, указывающий, что сервер не может выполнить запрос, поскольку у клиента отсутствуют надлежащие учетные данные для проверки подлинности прокси-сервера. сервер, который перехватывает запрос между клиентом и сервером.

Вариант 1: Попробуйте использовать автономный пакет npm selenium. Это похоже на webdriver-manager.

https://www.npmjs.com/package/selenium-standalone

Установить этот пакет глобально

npm i -g selenium-standalone

Затем загрузить / установить драйверы

selenium-standalone install

Затем запустить сервер

selenium-standalone start

(Или)

Опция 2: { ссылка }

...