mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
* [services/remote] set download folder with auto-saving * Update test/functional/services/remote/webdriver.ts * use REPO_ROOT per review suggestion
This commit is contained in:
parent
2bcdb2342d
commit
8ceed24821
1 changed files with 26 additions and 1 deletions
|
@ -17,7 +17,8 @@
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import { delimiter } from 'path';
|
||||
import { delimiter, resolve } from 'path';
|
||||
import Fs from 'fs';
|
||||
|
||||
import * as Rx from 'rxjs';
|
||||
import { mergeMap, map, takeUntil } from 'rxjs/operators';
|
||||
|
@ -37,6 +38,7 @@ import { Executor } from 'selenium-webdriver/lib/http';
|
|||
import { getLogger } from 'selenium-webdriver/lib/logging';
|
||||
import { installDriver } from 'ms-chromium-edge-driver';
|
||||
|
||||
import { REPO_ROOT } from '@kbn/dev-utils';
|
||||
import { pollForLogEntry$ } from './poll_for_log_entry';
|
||||
import { createStdoutSocket } from './create_stdout_stream';
|
||||
import { preventParallelCalls } from './prevent_parallel_calls';
|
||||
|
@ -50,6 +52,13 @@ const certValidation: string = process.env.NODE_TLS_REJECT_UNAUTHORIZED as strin
|
|||
const SECOND = 1000;
|
||||
const MINUTE = 60 * SECOND;
|
||||
const NO_QUEUE_COMMANDS = ['getLog', 'getStatus', 'newSession', 'quit'];
|
||||
const downloadDir = resolve(REPO_ROOT, 'target/functional-tests/downloads');
|
||||
const chromiumDownloadPrefs = {
|
||||
prefs: {
|
||||
'download.default_directory': downloadDir,
|
||||
'download.prompt_for_download': false,
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* Best we can tell WebDriver locks up sometimes when we send too many
|
||||
|
@ -112,6 +121,7 @@ async function attemptToCreateCommand(
|
|||
chromeCapabilities.set('goog:chromeOptions', {
|
||||
w3c: true,
|
||||
args: chromeOptions,
|
||||
...chromiumDownloadPrefs,
|
||||
});
|
||||
chromeCapabilities.set('unexpectedAlertBehaviour', 'accept');
|
||||
chromeCapabilities.set('goog:loggingPrefs', { browser: 'ALL' });
|
||||
|
@ -145,6 +155,10 @@ async function attemptToCreateCommand(
|
|||
edgeOptions.setEdgeChromium(true);
|
||||
// @ts-ignore internal modules are not typed
|
||||
edgeOptions.setBinaryPath(edgePaths.browserPath);
|
||||
const options = edgeOptions.get('ms:edgeOptions');
|
||||
// overriding options to include preferences
|
||||
Object.assign(options, chromiumDownloadPrefs);
|
||||
edgeOptions.set('ms:edgeOptions', options);
|
||||
const session = await new Builder()
|
||||
.forBrowser('MicrosoftEdge')
|
||||
.setEdgeOptions(edgeOptions)
|
||||
|
@ -175,6 +189,14 @@ async function attemptToCreateCommand(
|
|||
firefoxOptions.set('moz:firefoxOptions', {
|
||||
prefs: { 'devtools.console.stdout.content': true },
|
||||
});
|
||||
firefoxOptions.setPreference('browser.download.folderList', 2);
|
||||
firefoxOptions.setPreference('browser.download.manager.showWhenStarting', false);
|
||||
firefoxOptions.setPreference('browser.download.dir', downloadDir);
|
||||
firefoxOptions.setPreference(
|
||||
'browser.helperApps.neverAsk.saveToDisk',
|
||||
'application/comma-separated-values, text/csv, text/plain'
|
||||
);
|
||||
|
||||
if (headlessBrowser === '1') {
|
||||
// See: https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Headless_mode
|
||||
firefoxOptions.headless();
|
||||
|
@ -298,6 +320,9 @@ export async function initWebDriver(
|
|||
log.verbose(entry.message);
|
||||
});
|
||||
|
||||
// create browser download folder
|
||||
Fs.mkdirSync(downloadDir, { recursive: true });
|
||||
|
||||
// download Edge driver only in case of usage
|
||||
if (browserType === Browsers.ChromiumEdge) {
|
||||
edgePaths = await installDriver();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue