What are some characteristics of the REST API
What are characteristics of an Automation Framework?
What is the __init__(self) method in python?
A special method, which is called class constructor or initialization method that Python calls when you create a new instance of this class.
Give example of creating a class in Python
class Employee: '''Common base class for all employees''' empCount = 0
def \_\_init\_\_(self, name, salary):
self.name = name
self.salary = salary
Employee.empCount += 1
def displayCount(self):
print "Total Employee %d" % Employee.empCount