Interaction with Vaadin

I’m a working on a project where I have to interact with a webapplication which is build as a vaadin web application.

On normal websites it’s possible to interact by declaring which inputparameter you want to enter. Fx. if I want to press a submit-button on a website I can write that my program has to click the input-tag where the type equals “submit”.
On normal HTML websites i can look through the source code to find the parameters i’m looking for.
But I can’t do this with this Vaadin-application.

Is it possible to interact with a Vaadin-application like described?

Hope to hear from you soon.

You can use component.setDebugId("my Id") in your code and then simply tell your program to click on the element with the id “my Id”