Control + V not working using selenium c# -
i trying copy , paste object, keyboard action using selenium c#, works ctrl+c not ctrl + v.
sample script below: action copyaction = getactions(); action pasteaction = getactions(); copyaction.sendkeys(keys.control + "c").build().perform();
click folder paste above copied object thread.sleep(1000); pasteaction.sendkeys(keys.control + "v").build().perform();
thanks in advance.
this code works me! allows me use sendkeys
clipboard.settext(target); pageobjects.sendkeys(openqa.selenium.keys.control + "v");
Comments
Post a Comment