如何发送SendKeys(Keys.Control +“ p”)在使用Selenium的c#中可以工作?

时间:2018-08-28 12:35:33

标签: selenium-webdriver c#-4.0 selenium-chromedriver

下面的代码不起作用

Actions act = new Actions(Driver);
act.SendKeys(Keys.Control + "p").Build().Perform();

尝试将页面另存为PDF。

1 个答案:

答案 0 :(得分:-1)

尝试使用如下所示的Keys.Chord()方法:

Actions act = new Actions(Driver);
act.SendKeys(Keys.Chord(Keys.Control, "p")).Build().Perform();

可能需要更改一些C#语法。