We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ToNewWindow
ToNewWindowAsTab
Go
Add methods to Go and AtataNavigator classes:
AtataNavigator
public static T ToNewWindow<T>(T pageObject = null, string url = null, bool temporarily = false) where T : PageObject<T>; public static T ToNewWindowAsTab<T>(T pageObject = null, string url = null, bool temporarily = false) where T : PageObject<T>;
Go.To<GoTo1Page>(); Go.ToNewWindow<GoTo2Page>() .PageUri.AbsolutePath.Should.EndWith("/goto2"); Go.ToPreviousWindow<GoTo1Page>() .PageUri.AbsolutePath.Should.EndWith("/goto1");
The text was updated successfully, but these errors were encountered:
#680 Add ToNewWindow and ToNewWindowAsTab methods to Go
44bb113
YevgeniyShunevych
No branches or pull requests
Add methods to
Go
andAtataNavigator
classes:Usage
The text was updated successfully, but these errors were encountered: