Hi,
I completed Automation Certification Level 1 - Python a while back. I have no knowledge of doing the same thing using Robot framework. I am now trying to complete Level 2 in Python. However, there seems to be a lack of documentation when it comes to Python-based development in Robocorp. Or maybe I am not looking at the right sources. Therefore, seeking help.
Issue: In level 2, for web automation, I used the same library suggested in level 1 course: robocorp.browser. There are cases where clicking on the “Order” button may give you an error message. In such a case, we need to click on the “Order” button again.
Though I have solved this by using try catch, break, and while, I wanted to know if there was a way to:
- Check if a certain web UI element/locator/HTML element is available or not using the browser module.
- Without using the browser module
- Reducing timeout for a particular activity (say page.click())
Also, is there like a Robocorp course using Python for Web Automation?
Note: I am looking for a Python-based solution.