How to pass **kwargs values from Robotframework to python class
At times its become very confusing how to pass **kwargs values to robotframework. In below post , i will try to explain you , how you can pass your **kwargs value to python class from robot file. Lets suppose we have file Demo_kwargs.py , which accept **kwargs value from the user. Demo_kwargs.py from subprocess import Popen, CREATE_NEW_CONSOLE,PIPE,STDOUT import time import subprocess import datetime import os class Demo_kwargs: """Demo class""" def __init__(self,**kwargs): self.filters='' self.window_ip = kwargs.get('ip') #print type(self.window_ip) self.window_user= kwargs.get('username') self.window_password= kwargs.get('password') self.dest_path= kwargs.get('Target_path') self.interface= kwargs.get('interface') se...