Skip to content
New issue

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

Add with method #69

Open
DinisCruz opened this issue Feb 15, 2016 · 0 comments
Open

Add with method #69

DinisCruz opened this issue Feb 15, 2016 · 0 comments

Comments

@DinisCruz
Copy link
Contributor

http://stackoverflow.com/a/5964848/262379

/// <summary>
/// C# implementation of Visual Basics With statement
/// </summary>
public static void With<T>(this T _object, Action<T> _action)
{
    _action(_object);
}

so that code like this is possible

        public static API_Web login(this API_Web api_Web, string username, string password)     
        {
            api_Web.ie.with( (ie) =>
            {
                ie.field("txtUserName").value(username);
                ie.field("txtPassword").value(password);
                ie.button("Login").click();
            });
            return api_Web;
        }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant