I want to extract all the methods and want to send some parameters using how can I do automation using python.
I want only methods as user input and send parameters to the method. How can I achieve this?
from suds.client import client
url="name fo the url"
client=Client(url)
Suds ( https://fedorahosted.org/suds/ ) version: 0.4 GA build: R699-20100913
Service ( Services ) tns="http://www.altoromutual.com/bank/ws/"
Prefixes (1)
ns0 = "http://www.altoromutual.com/bank/ws/"
Ports (2):
(ServicesSoap)
Methods (3):
GetUserAccounts(xs:int UserId, )
IsValidUser(xs:string UserId, )
TransferBalance(MoneyTransfer transDetails, )
Types (4):
AccountData
ArrayOfAccountData
MoneyTransfer
Transaction
(ServicesSoap12)
Methods (3):
GetUserAccounts(xs:int UserId, )
IsValidUser(xs:string UserId, )
TransferBalance(MoneyTransfer transDetails, )
Types (4):
AccountData
ArrayOfAccountData
MoneyTransfer
Transaction