Skip to content

Commit

Permalink
Fix unstable selector
Browse files Browse the repository at this point in the history
  • Loading branch information
okolesnyk committed Mar 19, 2019
1 parent 1b9a1b4 commit 5aef2fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<element name="addValue" type="button" selector="//button[contains(@data-action,'add_new_row')]" timeout="30"/>
<element name="defaultStoreView" type="input" selector="//input[contains(@name,'option[value][option_{{row}}][1]')]" parameterized="true"/>
<element name="adminOption" type="input" selector="//input[contains(@name,'option[value][option_{{row}}][0]')]" parameterized="true"/>
<element name="defaultRadioButton" type="radio" selector="//tr[{{row}}]//input[contains(@name,'default[]')]/..//label" parameterized="true"/>
<element name="defaultRadioButton" type="radio" selector="//tr[{{row}}]//input[contains(@name,'default[]')]" parameterized="true"/>
<element name="isRequired" type="checkbox" selector="//input[contains(@name,'is_required')]/..//label"/>
<element name="advancedAttributeProperties" type="text" selector="//div[contains(@data-index,'advanced_fieldset')]"/>
<element name="attributeCode" type="input" selector="//*[@class='admin__fieldset-wrapper-content admin__collapsible-content _show']//input[@name='attribute_code']"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<section name="StorefrontMessagesSection">
<element name="success" type="text" selector="div.message-success.success.message"/>
<element name="error" type="text" selector="div.message-error.error.message"/>
<element name="noticeMessage" type="text" selector="//div[@class='message notice']/div"/>
<element name="noticeMessage" type="text" selector="div.message.notice div"/>
</section>
</sections>

0 comments on commit 5aef2fb

Please sign in to comment.