Aug-05-2024, 07:55 AM
Hi All,
Greetings!!!
I am new to coding and in python and hence need support to resolve following problem statement
The problem statement : We are automating find files from folders of WinSCP tool. We are using pywinauto to automate this scenario.
In the " Find file" search box we have two input text box i.e. one for file and one for corresponding folder. We are trying to use CSV file to fetch data and send it over these two input box as i mentioned. however not sure how to iterate over following data.
Example of CSV file:
Sr No FileName FilePath
1 xyz.txt D:\Documents\Loan documents\Details
2 abc.tar D:\Documents\Loan documents\tar
Expected : We would like to fetch values of row and put it in the input text box. Lets say we have, input box 1 and input box 2
Now i would like to put values from first row from above csv file i.e. 'xyz.txt' to input box 1 and 'D:\Documents\Loan documents\Details' to input box 2 and perform search operation by clicking search button.
Then again it should iterate and go to second row of the csv file and put 'abc.tar' in input box 1 and D:\Documents\Loan documents\tar'
[/b]
I tried using below piece of code but not able to iterate the way i need.
Kindly help me in solving this either for loop or any other method.
Greetings!!!
I am new to coding and in python and hence need support to resolve following problem statement
The problem statement : We are automating find files from folders of WinSCP tool. We are using pywinauto to automate this scenario.
In the " Find file" search box we have two input text box i.e. one for file and one for corresponding folder. We are trying to use CSV file to fetch data and send it over these two input box as i mentioned. however not sure how to iterate over following data.
Example of CSV file:
Sr No FileName FilePath
1 xyz.txt D:\Documents\Loan documents\Details
2 abc.tar D:\Documents\Loan documents\tar
Expected : We would like to fetch values of row and put it in the input text box. Lets say we have, input box 1 and input box 2
Now i would like to put values from first row from above csv file i.e. 'xyz.txt' to input box 1 and 'D:\Documents\Loan documents\Details' to input box 2 and perform search operation by clicking search button.
Then again it should iterate and go to second row of the csv file and put 'abc.tar' in input box 1 and D:\Documents\Loan documents\tar'
[/b]
I tried using below piece of code but not able to iterate the way i need.
filename = 'file.csv' with open(filename, 'r') as csvfile: datareader = csv.reader(csvfile) for x in datareader: win[u'Edit'].type_keys(x)
Kindly help me in solving this either for loop or any other method.