mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Update ftr (main) (#187039)
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/selenium-webdriver](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selenium-webdriver) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/selenium-webdriver)) | [`^4.1.22` -> `^4.1.23`](https://renovatebot.com/diffs/npm/@types%2fselenium-webdriver/4.1.22/4.1.23) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [chromedriver](https://togithub.com/giggio/node-chromedriver) | [`^125.0.2` -> `^126.0.2`](https://renovatebot.com/diffs/npm/chromedriver/125.0.2/126.0.2) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>giggio/node-chromedriver (chromedriver)</summary> ### [`v126.0.2`](https://togithub.com/giggio/node-chromedriver/compare/126.0.1...126.0.2) [Compare Source](https://togithub.com/giggio/node-chromedriver/compare/126.0.1...126.0.2) ### [`v126.0.1`](https://togithub.com/giggio/node-chromedriver/compare/126.0.0...126.0.1) [Compare Source](https://togithub.com/giggio/node-chromedriver/compare/126.0.0...126.0.1) ### [`v126.0.0`](https://togithub.com/giggio/node-chromedriver/compare/125.0.3...126.0.0) [Compare Source](https://togithub.com/giggio/node-chromedriver/compare/125.0.3...126.0.0) ### [`v125.0.3`](https://togithub.com/giggio/node-chromedriver/compare/125.0.2...125.0.3) [Compare Source](https://togithub.com/giggio/node-chromedriver/compare/125.0.2...125.0.3) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/elastic/kibana). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjQxMy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJyZWxlYXNlX25vdGU6c2tpcCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Budzenski <jon@elastic.co>
This commit is contained in:
parent
279ee0f1e8
commit
b6bc467ee8
5 changed files with 20 additions and 13 deletions
|
@ -1542,7 +1542,7 @@
|
|||
"@types/redux-actions": "^2.6.1",
|
||||
"@types/resolve": "^1.20.1",
|
||||
"@types/seedrandom": ">=2.0.0 <4.0.0",
|
||||
"@types/selenium-webdriver": "^4.1.22",
|
||||
"@types/selenium-webdriver": "^4.1.23",
|
||||
"@types/semver": "^7",
|
||||
"@types/set-value": "^2.0.0",
|
||||
"@types/sinon": "^7.0.13",
|
||||
|
@ -1594,7 +1594,7 @@
|
|||
"buildkite-test-collector": "^1.7.0",
|
||||
"callsites": "^3.1.0",
|
||||
"chance": "1.0.18",
|
||||
"chromedriver": "^125.0.2",
|
||||
"chromedriver": "^126.0.2",
|
||||
"clean-webpack-plugin": "^3.0.0",
|
||||
"cli-progress": "^3.12.0",
|
||||
"cli-table3": "^0.6.1",
|
||||
|
|
|
@ -53,7 +53,10 @@ class BrowserService extends FtrService {
|
|||
* https://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/lib/webdriver_exports_WebDriver.html#actions
|
||||
*/
|
||||
public getActions() {
|
||||
return this.driver.actions();
|
||||
return this.driver.actions({
|
||||
async: undefined,
|
||||
bridge: undefined,
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -121,7 +121,7 @@ function initChromiumOptions(browserType: Browsers, acceptInsecureCerts: boolean
|
|||
}
|
||||
|
||||
if (browserBinaryPath) {
|
||||
options.setChromeBinaryPath(browserBinaryPath);
|
||||
options.setBinaryPath(browserBinaryPath);
|
||||
}
|
||||
|
||||
if (noCache === '1') {
|
||||
|
|
|
@ -141,7 +141,10 @@ export class WebElementWrapper {
|
|||
}
|
||||
|
||||
private getActions() {
|
||||
return this.driver.actions();
|
||||
return this.driver.actions({
|
||||
async: undefined,
|
||||
bridge: undefined,
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
17
yarn.lock
17
yarn.lock
|
@ -10984,11 +10984,12 @@
|
|||
resolved "https://registry.yarnpkg.com/@types/seedrandom/-/seedrandom-2.4.28.tgz#9ce8fa048c1e8c85cb71d7fe4d704e000226036f"
|
||||
integrity sha512-SMA+fUwULwK7sd/ZJicUztiPs8F1yCPwF3O23Z9uQ32ME5Ha0NmDK9+QTsYE4O2tHXChzXomSWWeIhCnoN1LqA==
|
||||
|
||||
"@types/selenium-webdriver@^4.1.22":
|
||||
version "4.1.22"
|
||||
resolved "https://registry.yarnpkg.com/@types/selenium-webdriver/-/selenium-webdriver-4.1.22.tgz#344519b90727eb713e1ce6d2e0198eb0b4f8f316"
|
||||
integrity sha512-MCL4l7q8dwxejr2Q2NXLyNwHWMPdlWE0Kpn6fFwJtvkJF7PTkG5jkvbH/X1IAAQxgt/L1dA8u2GtDeekvSKvOA==
|
||||
"@types/selenium-webdriver@^4.1.23":
|
||||
version "4.1.23"
|
||||
resolved "https://registry.yarnpkg.com/@types/selenium-webdriver/-/selenium-webdriver-4.1.23.tgz#05a2794927db661f075ab443d5504b679b32f7f7"
|
||||
integrity sha512-PgreEfCfafYLyTwvJTZvOspCq3JABnS51e+NSFFL5yoiMO7h04lWgLfr10NA7nl/yZbz4m76rBfOOdDfleb7pQ==
|
||||
dependencies:
|
||||
"@types/node" "*"
|
||||
"@types/ws" "*"
|
||||
|
||||
"@types/semver@^7", "@types/semver@^7.3.12":
|
||||
|
@ -13948,10 +13949,10 @@ chrome-trace-event@^1.0.2:
|
|||
dependencies:
|
||||
tslib "^1.9.0"
|
||||
|
||||
chromedriver@^125.0.2:
|
||||
version "125.0.2"
|
||||
resolved "https://registry.yarnpkg.com/chromedriver/-/chromedriver-125.0.2.tgz#e8d399a8f45aa0958dd0a3662d9175d25520ec18"
|
||||
integrity sha512-H2mIy3r//bIGVouQQrp2UzS93cjGCV2f+I6qNimAOyIiWkaKCiLEuDMQnuC21rewo/UuyOA8CDqa4a7RIT/8EQ==
|
||||
chromedriver@^126.0.2:
|
||||
version "126.0.4"
|
||||
resolved "https://registry.yarnpkg.com/chromedriver/-/chromedriver-126.0.4.tgz#5c5e1f80c4269b55251c563cf47709154090135b"
|
||||
integrity sha512-mIdJqdocfN/y9fl5BymIzM9WQLy64x078i5tS1jGFzbFAwXwXrj3zmA86Wf3R/hywPYpWqwXxFGBJHgqZTuGCA==
|
||||
dependencies:
|
||||
"@testim/chrome-version" "^1.1.4"
|
||||
axios "^1.6.7"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue