I am doing Selenium Automation testing On MSCRM 2011 but Save,Save&Cloase Buttons are not performing the Action After filling (Child frame)the details in Fields(Attribute) i am switching to Parent frame . IS there any Issue with Ribbon Button in MSCRM2011
Asked
Active
Viewed 60 times
1 Answers
0
Try to simulate a mouse event to perform the click operation. This could help you.

Praveen
- 1,387
- 1
- 12
- 22
-
Thanks sir. I wrote Below Lines. Actions obj2 = new Actions(driver); WebElement ele = driver.findElement(By.id("account|NoRelationship|Form|Mscrm.Form.account.Save-Large")); obj2.moveToElement(ele).build().perform(); But these are working – Rahil Kumar Jul 02 '15 at 11:25