Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
9d18c70
Add support to pass the initialTitle to the E2E tests
Dec 29, 2023
55d500e
Editor Page - Add new E2E utils
Dec 29, 2023
b0550a1
E2E - Paragraph block - Remove deprecated multiline prop test
Dec 29, 2023
e9de746
Add initial E2E Writing flow tests
Dec 29, 2023
39471d9
E2E Tests - Merge Paragraph block tests with the Writing flow tests
Dec 29, 2023
a7c219a
E2E Tests - Merge Heading block tests with the Writing flow tests
Dec 29, 2023
9c53a3b
Add missing part of the test
Jan 2, 2024
f44a111
Fixes comment typo
Jan 2, 2024
b5f9fb7
Fix typo
Jan 2, 2024
119dcd6
Increase pause value
Jan 2, 2024
da9e54a
Add pause before dismissing the keyboard to avoid flakiness
Jan 2, 2024
02e42d7
Remove pause in favor of waitUntil
Jan 2, 2024
5b0823e
Removes pause in favor of waitUntil when checking for the Keyboard st…
Jan 2, 2024
692316b
Merge branch 'trunk' into feat/native-writing-flow-tests
Jan 2, 2024
7e6fa2d
Simplify waitUntil to just pass the promise
Jan 3, 2024
0cdd36b
Rename getEmptyTitleElement to getEmptyTitleTextInputElement and move…
Jan 3, 2024
918be74
Editor Page - Adds new param skipWrapperClick to getTextBlockAtPositi…
Jan 3, 2024
b4522c3
Unify the split and merge tests into one
Jan 3, 2024
bbf277d
Update `showSoftKeyboard` to wait for the text input to get focus
fluiddot Jan 4, 2024
a3c7b7f
Check input method manager is defined before hiding keyboard
fluiddot Jan 4, 2024
980cad0
Set wrapper view of the editor to be not focusable in the demo app
fluiddot Jan 4, 2024
8acfa8a
Merge branch 'rnmobile/fix/android-open-keyboard-after-focus' into fe…
fluiddot Jan 4, 2024
bfccc19
Merge branch 'trunk' into feat/native-writing-flow-tests
fluiddot Jan 4, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ data class GutenbergProps @JvmOverloads constructor(
content?.let { putString(PROP_INITIAL_DATA, it) }
}

private const val PROP_INITIAL_TITLE = "initialTitle"
private const val PROP_INITIAL_HTML_MODE_ENABLED = "initialHtmlModeEnabled"
private const val PROP_POST_TYPE = "postType"
private const val PROP_HOST_APP_NAMESPACE = "hostAppNamespace"
Expand All @@ -105,6 +104,7 @@ data class GutenbergProps @JvmOverloads constructor(
private const val PROP_QUOTE_BLOCK_V2 = "quoteBlockV2"
private const val PROP_LIST_BLOCK_V2 = "listBlockV2"

const val PROP_INITIAL_TITLE = "initialTitle"
const val PROP_INITIAL_DATA = "initialData"
const val PROP_STYLES = "rawStyles"
const val PROP_FEATURES = "rawFeatures"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ describe( 'Gutenberg Editor Rotation tests', () => {
await editorPage.addNewBlock( blockNames.paragraph );

if ( isAndroid() ) {
// Waits until the keyboard is visible
await editorPage.driver.waitUntil( async function () {
return await editorPage.driver.isKeyboardShown();
} );
await editorPage.dismissKeyboard();
}

Expand Down
63 changes: 0 additions & 63 deletions packages/react-native-editor/__device-tests__/[email protected]

This file was deleted.

This file was deleted.

Loading