Skip to content

Commit e705a67

Browse files
committed
1 parent 12ed268 commit e705a67

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ paste traceback here
1414
```
1515

1616
**To Reproduce**
17-
Steps to reproduce the behavior:
17+
Steps to reproduce the behaviour:
1818
1. Go to '...'
1919
2. Click on '....'
2020
3. Scroll down to '....'
2121
4. See error
2222

23-
**Expected behavior**
23+
**Expected behaviour**
2424
A clear and concise description of what you expected to happen.
2525

2626
**Screenshots**

poco/pocofw.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ def __init__(self, agent, **options):
4242
self._agent = agent
4343

4444
# options
45-
self._pre_action_wait_for_appearance = options.get(b'pre_action_wait_for_appearance', 6)
46-
self._post_action_interval = options.get(b'action_interval', 0.8)
47-
self._poll_interval = options.get(b'poll_interval', 1.44)
45+
self._pre_action_wait_for_appearance = options.get('pre_action_wait_for_appearance', 6)
46+
self._post_action_interval = options.get('action_interval', 0.8)
47+
self._poll_interval = options.get('poll_interval', 1.44)
4848
if 'touch_down_duration' in options:
49-
touch_down_duration = options[b'touch_down_duration']
49+
touch_down_duration = options['touch_down_duration']
5050
try:
5151
touch_down_duration = float(touch_down_duration)
5252
except ValueError:

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
six
22
requests
33
airtest
4-
hrpc
4+
hrpc>=1.0.5
55
websocket-client

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def parse_requirements(filename='requirements.txt'):
1010

1111
setup(
1212
name='pocoui',
13-
version='1.0.69',
13+
version='1.0.70',
1414
keywords="poco, automation test, ui automation",
1515
description='Poco cross-engine UI automated test framework.',
1616
long_description='Poco cross-engine UI automated test framework. 2018 present by NetEase Games',

0 commit comments

Comments
 (0)