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