Can you reproduce this problem using screenshots or videos?I cannot click or interact with the project maker browser window sometimes in the latest version. The browser works if i use actions, but it is unresponsive when i try and click / right click on it.
instance.ActiveTab.KeyEvent("LeftCtrl", "down", "Ctrl");
instance.ActiveTab.MouseClick(60, 200, "left", "click");
the microsoft site list LeftCtrl as the key, but using this empty produces a error in zenno.... so idk...Parameters
key
Type: System.String
The key for event. For addtional characters you can use enumeration members from https://msdn.microsoft.com/en-us/library/system.windows.input.key.aspx
Emulator.SendKey(instance.ActiveTab.Handle,System.Windows.Forms.Keys.BrowserBack, KeyboardEvent.Press);
Emulator.SendKey(instance.ActiveTab.Handle,System.Windows.Forms.Keys.LControlKey, KeyboardEvent.Down);
instance.ActiveTab.MouseClick(735, 28, "left", "click");
Emulator.SendKey(instance.ActiveTab.Handle,System.Windows.Forms.Keys.Shift, KeyboardEvent.Down);
instance.ActiveTab.MouseWheel(50, 50, 4, 0, false)
history.go(-1);