Skip to content

Commit

Permalink
修正华泰通讯密码包含特殊字符时不能被正确输入的问题 (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
lovelykd authored Nov 22, 2020
1 parent 5fdbaf9 commit e68b04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easytrader/ht_clienttrader.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def login(self, user, password, exe_path, comm_password=None, **kwargs):
self._app.top_window().Edit1.type_keys(user)
self._app.top_window().Edit2.type_keys(password)

self._app.top_window().Edit3.type_keys(comm_password)
self._app.top_window().Edit3.set_edit_text(comm_password)

self._app.top_window().button0.click()

Expand Down

0 comments on commit e68b04d

Please sign in to comment.