Skip to content

Commit

Permalink
test escape in InlineEdit
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed May 6, 2023
1 parent 1ebcfdf commit d4f9ce3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests-behat/vue.feature
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ Feature: Vue
Then Toast display should contain text "Update saved"
Given I am on "javascript/vue-component.php"
Then I check if input value for "(//input[@name='atk_fp_country__name'])[1]" match text "test autoSave"
When I fill field using "(//input[@name='atk_fp_country__name'])[1]" with "Germany"
When I fill field using "(//input[@name='atk_fp_country__name'])[1]" with "germany"
Then Toast display should contain text "Country name must be unique."
Then I check if input value for "(//input[@name='atk_fp_country__name'])[1]" match text "germany"
When I write "[escape]" into selector "(//input[@name='atk_fp_country__name'])[1]"
Then I check if input value for "(//input[@name='atk_fp_country__name'])[1]" match text "test autoSave"

Scenario: testing InlineEdit - /w onChange callback
Given I am on "javascript/vue-component.php"
Expand Down

0 comments on commit d4f9ce3

Please sign in to comment.