Posts by Edson Costa • 1 point
1 post
-
0
votes2
answers4524
viewsA: How do I switch between open windows?
Try to identify the window you need using: foreach (var handle in driver.WindowHandles) { driver.SwitchTo().Window(handle); } Once you figure out which window, you can reach it like this:…