Is it possible to use Cyrillic in behave in python?
Faced a problem when .feature use Cyrillic in the .feature file:
Sample features:
Scenario Outline: get goods by detailid Given ัะตัั <detailid> Steppe example:
@given('ัะตัั {detailid}') I get the error:
You can implement step definitions for undefined steps with these snippets: @given(u'ัะตัั 225444') In the .feature file I tried to prescribe the encoding # coding:utf8 , but did not help.
If I use Latin, then there are no problems.
Tell me what am I doing wrong?