Skip to content

Commit dd5afd8

Browse files
author
Dmytro Vilchynskyi
committed
MAGETWO-32250: Header
- fixed tests
1 parent 6a19508 commit dd5afd8

File tree

5 files changed

+8
-5
lines changed
  • app/code/Magento/Integration/view/adminhtml/templates/integration
  • dev/tests/functional
    • lib/Magento/Mtf/Client/Element
    • tests/app/Magento
      • Backend/Test/Block/Admin
      • Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search
      • GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/Search

5 files changed

+8
-5
lines changed

app/code/Magento/Integration/view/adminhtml/templates/integration/popup_container.phtml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ require([
7373
</script>
7474

7575
<div id="integration-popup-container" style="display: none;"></div>
76-
<div id="integration-delete-container" class="messages admin__scope" style="display: none;" title="<?php echo __('Are you sure ?'); ?>">
76+
<div id="integration-delete-container"
77+
class="messages admin__scope"
78+
style="display: none;"
79+
title="<?php echo __('Are you sure ?'); ?>">
7780
<div class="message message-notice notice">
7881
<div>
7982
<?php echo __("Are you sure you want to delete this integration? You can't undo this action."); ?>

dev/tests/functional/lib/Magento/Mtf/Client/Element/LiselectstoreElement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class LiselectstoreElement extends SimpleElement
5454
*
5555
* @var string
5656
*/
57-
protected $toggleSelector = '.toggle';
57+
protected $toggleSelector = '.admin__action-dropdown[data-toggle="dropdown"]';
5858

5959
/**
6060
* Select value in liselect dropdown

dev/tests/functional/tests/app/Magento/Backend/Test/Block/Admin/Login.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Login extends Form
2121
*
2222
* @var string
2323
*/
24-
protected $submit = '[type=submit]';
24+
protected $submit = '.action-login';
2525

2626
/**
2727
* Submit login form

dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Grid extends GridInterface
1919
*
2020
* @var string
2121
*/
22-
protected $addProducts = 'button.add';
22+
protected $addProducts = 'button.action-add';
2323

2424
/**
2525
* An element locator which allows to select entities in grid

dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/Search/Grid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Grid extends GridInterface
1919
*
2020
* @var string
2121
*/
22-
protected $addProducts = 'button.add';
22+
protected $addProducts = 'button.action-add';
2323

2424
/**
2525
* Filters array mapping

0 commit comments

Comments
 (0)