Atata - 如何使用 Atata 框架切换到新浏览器 window?
Atata - How to switch to new browser window by using Atata framework?
我是 Atata 框架的新手。当我在我的网页中单击 link 时,它会在新的 window 中打开。如何使用 Atata 框架切换到新的 window?
谢谢
您可以使用Go.ToNextWindow<TPageObject>()
方法。例如:
Go.To<SomePage>().
// Do some actions.
ButtonThatOpensWindow.Click();
Go.ToNextWindow<SomeOtherPage>(). // Switches to newly opened window.
// Do some actions in scope of new window.
CloseWindow(); // Closes window and switches back to the previous window.
Go.To<SomePage>(navigate: false)...
// Continue to work within the first window.
还有一个 Go.ToWindow<TPageObject>(...)
方法,它采用 window 的名称,如果您在同时。
我是 Atata 框架的新手。当我在我的网页中单击 link 时,它会在新的 window 中打开。如何使用 Atata 框架切换到新的 window? 谢谢
您可以使用Go.ToNextWindow<TPageObject>()
方法。例如:
Go.To<SomePage>().
// Do some actions.
ButtonThatOpensWindow.Click();
Go.ToNextWindow<SomeOtherPage>(). // Switches to newly opened window.
// Do some actions in scope of new window.
CloseWindow(); // Closes window and switches back to the previous window.
Go.To<SomePage>(navigate: false)...
// Continue to work within the first window.
还有一个 Go.ToWindow<TPageObject>(...)
方法,它采用 window 的名称,如果您在同时。