修复Keys.ENTER没有正确回车问题

This commit is contained in:
g1879 2023-03-24 10:12:56 +08:00
parent 00db0af61a
commit 8a46f7c7f6

View File

@ -527,7 +527,7 @@ class ChromiumElement(DrissionElement):
if self.tag == 'input' and self.attr('type') == 'file':
return self._set_file_input(vals)
if clear and vals != '\n':
if clear and vals not in ('\n', '\ue007'):
self.clear(by_js=False)
else:
self._focus()
@ -542,7 +542,7 @@ class ChromiumElement(DrissionElement):
send_key(self, modifier, key)
return
if vals.endswith('\n'):
if vals.endswith(('\n', '\ue007')):
self.page.run_cdp('Input.insertText', text=vals[:-1])
send_key(self, modifier, '\n')
else: