Skip to content

Commit

Permalink
Feat: Navigation Down in InnerBlocks (#1379)
Browse files Browse the repository at this point in the history
* Add ref to gutenberg repo

* Fix e2e tests

* Update ref to gutenberg master
  • Loading branch information
jbinda authored and lukewalczak committed Dec 11, 2019
1 parent 3ff15cd commit cc5b1b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions __device-tests__/pages/editor-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ export default class EditorPage {

const parentId = `${ blockName } Block. Row ${ position }.`;
const parentLocator = `//*[contains(@${ this.accessibilityIdXPathAttrib }, "${ parentId }")]`;
let removeBlockLocator = `${ parentLocator }/following-sibling::*`;
removeBlockLocator += isAndroid() ? '' : '//*';
let removeBlockLocator = `${ parentLocator }`;
removeBlockLocator += isAndroid() ? '//*' : '//XCUIElementTypeButton';
let removeButtonIdentifier = `Remove block at row ${ position }`;

if ( isAndroid() ) {
Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 132 files

0 comments on commit cc5b1b4

Please sign in to comment.