How to use GetWindowHandles_ModernApp method of WebDriverAPI.Window class

Best WinAppDriver code snippet using WebDriverAPI.Window.GetWindowHandles_ModernApp

Window.cs

Source:Window.cs Github

copy

Full Screen

...101 Assert.IsNotNull(handles);102 Assert.AreEqual(0, handles.Count);103 }104 [TestMethod]105 public void GetWindowHandles_ModernApp()106 {107 session = Utility.CreateNewSession(CommonTestSettings.EdgeAppId, "-private");108 Assert.IsNotNull(session);109 var windowHandlesBefore = session.WindowHandles;110 Assert.IsNotNull(windowHandlesBefore);111 Assert.IsTrue(windowHandlesBefore.Count > 0);112 // Preserve previously opened Edge window(s) and only manipulate newly opened windows113 List<string> previouslyOpenedEdgeWindows = new List<string>(windowHandlesBefore);114 previouslyOpenedEdgeWindows.Remove(session.CurrentWindowHandle);115 // Set focus on itself116 session.SwitchTo().Window(session.CurrentWindowHandle);117 // Open a new window in private mode118 session.Keyboard.SendKeys(Keys.Control + Keys.Shift + "p" + Keys.Shift + Keys.Control);119 Thread.Sleep(TimeSpan.FromSeconds(3));...

Full Screen

Full Screen

GetWindowHandles_ModernApp

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using OpenQA.Selenium;7using OpenQA.Selenium.Chrome;8using WebDriverAPI.Window;9{10 {11 static void Main(string[] args)12 {13 IWebDriver driver = new ChromeDriver();14 driver.FindElement(By.LinkText("Gmail")).Click();15 driver.FindElement(By.LinkText("Terms of Service")).Click();16 driver.SwitchTo().Window(driver.WindowHandles.Last());17 driver.FindElement(By.LinkText("Privacy")).Click();18 driver.SwitchTo().Window(driver.WindowHandles.Last());19 driver.FindElement(By.LinkText("Help")).Click();20 driver.SwitchTo().Window(driver.WindowHandles.Last());21 driver.FindElement(By.LinkText("Send feedback")).Click();22 driver.SwitchTo().Window(driver.WindowHandles.Last());23 driver.FindElement(By.LinkText("Google Privacy")).Click();24 driver.SwitchTo().Window(driver.WindowHandles.Last());25 driver.FindElement(By.LinkText("Google Terms of Service")).Click();26 driver.SwitchTo().Window(driver.WindowHandles.Last());27 driver.FindElement(By.LinkText("Google Help")).Click();28 driver.SwitchTo().Window(driver.WindowHandles.Last());29 driver.FindElement(By.LinkText("Google Privacy Policy")).Click();30 driver.SwitchTo().Window(driver.WindowHandles.Last());31 driver.FindElement(By.LinkText("Google Terms of Service")).Click();

Full Screen

Full Screen

GetWindowHandles_ModernApp

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using OpenQA.Selenium;7using OpenQA.Selenium.Chrome;8using WebDriverAPI;9{10 {11 static void Main(string[] args)12 {13 IWebDriver driver = new ChromeDriver();14 driver.Manage().Window.Maximize();15 List<string> winHandles = Window.GetWindowHandles_ModernApp(driver);16 Console.WriteLine("Number of windows opened: " + winHandles.Count);17 foreach (string handle in winHandles)18 {19 Console.WriteLine("Window Handle: " + handle);20 }21 driver.Quit();22 }23 }24}

Full Screen

Full Screen

GetWindowHandles_ModernApp

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using System.Threading;7using OpenQA.Selenium;8using OpenQA.Selenium.Remote;9using OpenQA.Selenium.Appium;10using OpenQA.Selenium.Appium.Windows;11using OpenQA.Selenium.Interactions;12using System.Diagnostics;13using System.Collections.ObjectModel;14{15 {16 static void Main(string[] args)17 {18 WindowsDriver<WindowsElement> driver = null;19 DesiredCapabilities appCapabilities = new DesiredCapabilities();20 appCapabilities.SetCapability("app", "Microsoft.WindowsCalculator_8wekyb3d8bbwe!App");21 appCapabilities.SetCapability("deviceName", "WindowsPC");

Full Screen

Full Screen

GetWindowHandles_ModernApp

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using OpenQA.Selenium;7using OpenQA.Selenium.Chrome;8using WebDriverAPI;9{10 {11 static void Main(string[] args)12 {13 IWebDriver driver = new ChromeDriver();14 string windowHandle = driver.CurrentWindowHandle;15 driver.FindElement(By.LinkText("Gmail")).Click();16 List<string> windowHandles = Window.GetWindowHandles_ModernApp(driver, windowHandle);17 foreach (string window in windowHandles)18 {19 driver.SwitchTo().Window(window);20 Console.WriteLine(driver.Title);21 }22 driver.Quit();23 }24 }25}

Full Screen

Full Screen

GetWindowHandles_ModernApp

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using System.Diagnostics;7using System.Threading;8using OpenQA.Selenium;9using OpenQA.Selenium.Remote;10using OpenQA.Selenium.Appium;11using OpenQA.Selenium.Appium.Windows;12using OpenQA.Selenium.Appium.Enums;13using OpenQA.Selenium.Appium.Service;14using OpenQA.Selenium.Appium.MultiTouch;15{16 {17 static void Main(string[] args)18 {19 AppiumServiceBuilder builder = new AppiumServiceBuilder();20 builder.UsingAnyFreePort();21 builder.UsingDriverExecutable(@"C:\Program Files (x86)\Windows Application Driver\WinAppDriver.exe");22 builder.WithLogFile(@"C:\Users\Public\Documents\WindowsAppDriver.txt");23 AppiumLocalService service = builder.Build();24 service.Start();25 DesiredCapabilities appCapabilities = new DesiredCapabilities();26 appCapabilities.SetCapability("app", @"C:\Windows\System32\calc.exe");

Full Screen

Full Screen

GetWindowHandles_ModernApp

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using System.Windows.Automation;7using System.Diagnostics;8using System.Threading;9using OpenQA.Selenium;10using OpenQA.Selenium.Appium.Windows;11using OpenQA.Selenium.Remote;12{13 {14 static void Main(string[] args)15 {16 var appCapabilities = new DesiredCapabilities();17 appCapabilities.SetCapability("app", @"C:\Program Files (x86)\Windows Media Player\wmplayer.exe");18 appCapabilities.SetCapability("deviceName", "WindowsPC");

Full Screen

Full Screen

GetWindowHandles_ModernApp

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using OpenQA.Selenium;7using OpenQA.Selenium.Appium;8using OpenQA.Selenium.Appium.Windows;9using WebDriverAPI;10{11 {12 static void Main(string[] args)13 {

Full Screen

Full Screen

GetWindowHandles_ModernApp

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using OpenQA.Selenium;7using OpenQA.Selenium.Appium;8using OpenQA.Selenium.Appium.Windows;9using WebDriverAPI.Window;10{11 {12 static void Main(string[] args)13 {

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful