下面的代码不起作用
Actions act = new Actions(Driver);
act.SendKeys(Keys.Control + "p").Build().Perform();
尝试将页面另存为PDF。
答案 0 :(得分:-1)
尝试使用如下所示的Keys.Chord()
方法:
Actions act = new Actions(Driver);
act.SendKeys(Keys.Chord(Keys.Control, "p")).Build().Perform();
可能需要更改一些C#
语法。