-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from pmahend1/dev
Updates pertaining to Selenium and Commandline
- Loading branch information
Showing
6 changed files
with
216 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using CommandLine; | ||
|
||
namespace MSRewards | ||
{ | ||
class Options | ||
{ | ||
[Option('F', "use-firefox", Required = false, HelpText = "Use Firefox")] | ||
public bool Firefox { get; set; } | ||
|
||
|
||
[Option('E',"email", Required = true, HelpText = "Email ID")] | ||
public string Email { get; set; } | ||
|
||
[Option('P', "password", Required = true, HelpText = "password")] | ||
public string Password { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.