Skip to content
Advertisement

Need to run the code again if it fails, is there anyway out?

i have written a selenium automation code however it is very unstable because of the Salesforce website , i need some expertise in my code. i wanted to know how i can re run the code if it fails. below is my code , i will not able able to share some part of my code. i was trying to you for loop however i was not able to make the correct use of it , i even tried the while loop but i dont know how it works.

JavaScript

Advertisement

Answer

There’s a lot of sleeps here, which is a tell-tale sign of poorly written automation code. This will expose the automation to the unwanted failures which you’re describing.

Is there any reason why we’re using sleep’s instead of more appropriate explicit or fluent waits?

I would personally advise against going down the path of trying to rerun failed automation tests until they pass, that’s a rabbit hole which sounds messy. Instead I’d focus on making the code sleepless and robust. There’s a wealth of information around on why using sleeps is a bad idea.

Another couple of observations if I may:

  1. Xpaths like /html/body/div[9]/div[1]/div[1]/div[2]/div/div/div/div[3]/div/div/button should be avoided, these are prone to change and will add brittleness to the code

  2. There are examples where id’s are being dealt with by proxy via xpath, for example: browser.find_element_by_xpath('//*[@id="idSIButton9"]').click(). We’re better off cutting out the middleman and finding the element by id directly. For example: browser.find_element_by_id('idSIButton9').click

  3. There’s a lot of repeated code, if one small thing changes, we may have to make many changes to correct it. Ideally we want to only have to make that change in one place

All the best

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement