Skip to content

Commit

Permalink
Add the conf.name as the data-test-subj to the table rows of the adva…
Browse files Browse the repository at this point in the history
…nced settings. This allows functional UI automation to find the row and child form fields (not used by any automation yet).

Fixes #5600
  • Loading branch information
LeeDr committed Dec 8, 2015
1 parent e61a176 commit 5f20a53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tr ng-class="conf.value === undefined ? 'default' : 'custom'">
<tr ng-class="conf.value === undefined ? 'default' : 'custom'" data-test-subj="advancedSetting {{conf.name}}" >
<td class="name">
<b>{{conf.name}}</b>
<span class="smaller" ng-show="!conf.isCustom && conf.value !== undefined">
Expand Down

0 comments on commit 5f20a53

Please sign in to comment.