In light of https://unix.stackexchange.com/a/254854/674 and https://unix.stackexchange.com/questions/458895/how-can-i-bring-a-background-gui-job-to-the-front-of-my-desktop, there is an example from manpage of xdotool
# Activate google-chrome when you move the mouse to the bottom-left corner:
xdotool behave_screen_edge bottom-left search --class google-chrome windowactivate
The manpage says
--class Match against the window class.
--classname Match against the window classname.
What are "class" and "classname"?
What possible values do they have?
How can I find out the class and classname of a window?
Thanks.