Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
Moskva
Posts : 4
Join date : 2014-12-25

IDE - unsupporeted command for frames and windows? Empty 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
avatar
ccox
Master
Master
Posts : 205
Join date : 2012-01-06
Age : 38
Location : Denver, CO

IDE - unsupporeted command for frames and windows? Empty Re: IDE - unsupporeted command for frames and windows?

Tue Dec 30, 2014 12:12 am
driver.switchTo().frame("frame");

driver.switchTo().window("window");
Back to top
Permissions in this forum:
You cannot reply to topics in this forum