Python-Selenium Cannot Perform The Right Click In The Consecutive Loop
I am automating the task of creating a folder structure on our web application and it requires to right-click and open the context menu from where I can add a new folder. folder_pa
Solution 1:
Where is the actionchains initialized? Try reinitializing the action chains before using it in the except loop
actionchains = ActionChains(browser)
actionchains.context_click(parent_folder).perform()
Post a Comment for "Python-Selenium Cannot Perform The Right Click In The Consecutive Loop"