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

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -