Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~114 People Reached
Favorite Forums
Favorite Tags
Member Avatar for pittip

I have 2 classes in python and both of them extend the unittest.TestCase class. Hence I have 2 test cases. These test cases (classes) are: class Test_ID_94017(unittest.TestCase): ex = Excel() def setUp(self): self.driver = Browser().createBrowserDriver() self.driver.maximize_window() self.driver.implicitly_wait(15) self.ex.setUpASheetInExcel('Login') def test_CCPD_Regression001_PER_Custom_Check(self): ccp = CCPLogin(self.driver) loginDetails = self.ex.getLoginDetailsForATestCaseFromExcel('Login', '94017') ccp.login(loginDetails[0], loginDetails[1], loginDetails[2]) …

0
114