1

I have been struggling trying to get the key combination mentioned in the title (Ctrl + +).

What I have tried so far:

'ctrl+\+'
'ctrl+\\+'

Is this even supported in TestCafe?

The project I am working on uses Typescript as the primary language.

Alex Skorkin
  • 4,264
  • 3
  • 25
  • 47

1 Answers1

1

This combination is not supported as it does not make any sense for editors:

Press Key Action

Please clarify where and how you are going to use it.

Alternatively, you can try using an approach from this thread: Is it possible to simulate keypress events programmatically?

Alex Skorkin
  • 4,264
  • 3
  • 25
  • 47
  • It is going to be used to test a zoom action in a canvas element. Nothing related to editors. – Guillermo Grajales Feb 24 '20 at 14:10
  • Thank you for your clarification. In this case, you can try using an approach from this thread: [Is it possible to simulate keypress events programmatically?](https://stackoverflow.com/questions/596481/is-it-possible-to-simulate-key-press-events-programmatically) – Alex Skorkin Feb 24 '20 at 14:36