I am currently using Selenium to carry out testing on a web application, but I have encountered an issue. One of the nodes that needs to be clicked has a value that constantly changes upon startup.
For example:
click css=#f0012 > ins.jstree-icon
At startup, the letter before 0012 is randomly selected from a range of letters (a-z). This means that every time my Selenium script runs, I either need to extract this character or simply reference the number 0012 so that the program can identify which button to click.
I am really struggling with this problem, so any assistance would be greatly appreciated.