I am using chromium browser to automate some task.
Basically I want to load images for that I have to click "Add Image" anchor tag on the webpage.
So I cannot directly click it not sure why when other works with same code. But I have managed to bring the focus on that anchor tag but sending :
KeyEvent k = new KeyEvent();
k.WindowsKeyCode = 9; // TAB KEY
browser.GetBrowser().GetHost().SendKeyEvent(k);
//browser = ChromiumWebBrowser browser;
The above work perfectly fine as i see it coming to the correct anchor Tag.
Now i do :
KeyEvent k = new KeyEvent();
k.WindowsKeyCode = 13; //ENTER KEY
browser.GetBrowser().GetHost().SendKeyEvent(k);
To simulate enter key , however nothing happens but if I press "Enter" manually on Keyword it works fine so why the above is not acting same as me clicking "Enter Key"
Any suggestions.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…