Skip to content

Commit a35d008

Browse files
committed
iterate log, quotes-handling, visual automation
1 parent dbe8bf6 commit a35d008

File tree

7 files changed

+148
-58
lines changed

7 files changed

+148
-58
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
/tagui_python.log
1313
/tagui_python.raw
1414
/tagui_python.js
15+
/tagui_visual.log
16+
/tagui_visual.raw
17+
/tagui_visual.js
1518

1619
# exclude entry flow output file
1720
/tagui_python.txt

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
include LICENSE.txt
22
include README.md
33
include tagui_python
4+
include tagui_visual
5+
include tagui_local.js

sample.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@
55
t.url('https://ca.yahoo.com')
66
t.type('search-box','github')
77
t.show('search-box')
8-
t.click("search-button")
9-
t.wait()
10-
t.snap('page','page.png')
8+
t.click('search-button')
9+
t.wait(6.6)
10+
t.snap('page','results.png')
1111
t.snap('logo','logo.png')
12+
1213
t.url('https://duckduckgo.com')
13-
t.type('search_form_input_homepage','The search engine that doesnt track you.')
14+
t.type('search_form_input_homepage','The search engine that doesn\'t track you.')
15+
t.snap('page','duckduckgo.png')
16+
t.wait(4.4)
1417

1518
t.close()

0 commit comments

Comments
 (0)