Robot Framework File
Run Process | python | C:/file/set_rec.py
Open Browser | website.com/
Run some Kewords...
Python file
import sys
sys.setrecursionlimit(5000)
At first my ride code was just:
Open Browser | website.com/
Run some Keywords...
but after the test throw me the error massage: Python maximum recursion depth exceeded I found a solution at stackoverflow how to include .py in Robotframwork but I get the same error massage.