How to run a regular chrome browser

Hi,
can anyone tell me how can I run a test through a regular chrome browser? (not Chrome Driver)

Help me, please. :sweat:

Thanks in advance.

simply … you cannt!
there is a need for the code to talk with an aplication.
and that task is handled by drivers … for browsers, for desktop apps, for mobile devices and so on
you call them, they pass the actions from your code to the apllication, they grab responses and return to your code.
this is how automated testing works

or … you can simply use a custom class where you execute system commands. but that will be an abomination

1 Like

@Ibus thanks for the clarification.