- Moskva
- Posts : 4
Join date : 2014-12-25
IDE - unsupporeted command for frames and windows?
Thu Dec 25, 2014 9:14 pm
Here is the C# code exported from recorded test by selenium IDE 2.8 (latest). It seems to me that some commands are not supported such as selectFrame and SelectWindow. The system rerun after recording sometimes behaves as expected but sometimes it fails. Are there other IDE commands to deal with frames and windows? Maybe there might be otherway to solve this problem?
driver.Navigate().GoToUrl(baseURL + "/testst/MyPage.aspx");
// ERROR: Caught exception [ERROR: Unsupported command [selectFrame | SideMainFrame | ]]
driver.FindElement(By.Id("MainMenuLink")).Click();
// ERROR: Caught exception [ERROR: Unsupported command [selectWindow | name=mainmenu | ]]
driver.FindElement(By.LinkText("ListProducts")).Click();
The page tested based on Frame and frameset.
Thanks in advance
driver.Navigate().GoToUrl(baseURL + "/testst/MyPage.aspx");
// ERROR: Caught exception [ERROR: Unsupported command [selectFrame | SideMainFrame | ]]
driver.FindElement(By.Id("MainMenuLink")).Click();
// ERROR: Caught exception [ERROR: Unsupported command [selectWindow | name=mainmenu | ]]
driver.FindElement(By.LinkText("ListProducts")).Click();
The page tested based on Frame and frameset.
Thanks in advance
- ccoxMaster
- Posts : 205
Join date : 2012-01-06
Age : 39
Location : Denver, CO
Re: IDE - unsupporeted command for frames and windows?
Tue Dec 30, 2014 12:12 am
driver.switchTo().frame("frame");
driver.switchTo().window("window");
driver.switchTo().window("window");
Permissions in this forum:
You cannot reply to topics in this forum