Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mobile - Update editor initial HTML test for iOS and update Appium #44732

Merged
merged 3 commits into from
Oct 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Appium
Gerardo committed Oct 7, 2022
commit fdd7dd78512b5c865a7c3e1ba233bc4e5d24cbde
291 changes: 207 additions & 84 deletions package-lock.json
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -161,7 +161,7 @@
"@wordpress/stylelint-config": "file:packages/stylelint-config",
"ajv": "8.7.1",
"ajv-draft-04": "1.0.0",
"appium": "1.22.0",
"appium": "1.22.3",
"babel-jest": "27.4.5",
"babel-loader": "8.2.3",
"babel-plugin-inline-json-import": "0.3.2",
6 changes: 3 additions & 3 deletions packages/react-native-editor/__device-tests__/helpers/caps.js
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ const ios = {
os: 'iOS',
deviceOrientation: 'portrait',
automationName: 'XCUITest',
appiumVersion: '1.20.1', // Sauce Labs requires appiumVersion to be specified.
appiumVersion: '1.22.3', // Sauce Labs requires appiumVersion to be specified.
app: undefined, // Will be set later, locally this is relative to root of project.
processArguments: {
args: [ 'uitesting' ],
@@ -27,13 +27,13 @@ exports.iosServer = {
exports.android = {
browserName: '',
platformName: 'Android',
platformVersion: '9.0',
platformVersion: '11.0',
deviceName: 'Google Pixel 3 XL GoogleAPI Emulator',
automationName: 'UiAutomator2',
os: 'Android',
appPackage: 'com.gutenberg',
appActivity: 'com.gutenberg.MainActivity',
deviceOrientation: 'portrait',
appiumVersion: '1.20.2',
appiumVersion: '1.22.1',
app: undefined,
};