Skip to content

Commit d12aef5

Browse files
marcel-veselkajan-beranek
authored andcommitted
chore: simplify test suite and update Makefile to run simple test
1 parent 2485275 commit d12aef5

File tree

8 files changed

+23
-1
lines changed

8 files changed

+23
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,3 +170,6 @@ cython_debug/
170170
# and can be added to the global gitignore or merged into this file. For a more nuclear
171171
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
172172
#.idea/
173+
174+
playwright-log.txt
175+
screenshot

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ install:
99

1010
test:
1111
source .venv/bin/activate && \
12-
robot -d reports tests/agnostic_standalone.robot
12+
robot -d reports tests/simple.robot
1313

1414
test.selenium:
1515
source .venv/bin/activate && \

tests/simple.robot

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
*** Settings ***
2+
Library Browser
3+
Library wopee_rf.Standalone dot_env_path=.env
4+
5+
Resource ../resources/common.robot
6+
7+
8+
*** Test Cases ***
9+
Visual test w. Browser Library Viewport
10+
New Page https://dronjo.wopee.io
11+
12+
${timestamp} Generate Timestamp
13+
14+
Start Suite suite_name=Suite name-${timestamp}
15+
Start Scenario scenario_name=Simple test
16+
17+
${track_result} Track Fullpage step_name=Landing page
18+
19+
Stop Scenario

0 commit comments

Comments
 (0)