Advertisement
Guest User

Untitled

a guest
Aug 9th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public partial class Program : Form{
  2. private void button1_Click(object sender, EventArgs e)
  3. {
  4. userName = userBox.Text;
  5. passWord = passBox.Text;
  6. FirefoxDriver driver = new FirefoxDriver();
  7. Login.UserLogin(driver, userName, passWord);
  8.  
  9. }
  10. }
  11.  
  12. public void UpdateStatus(string status)
  13. {
  14. statusLabel.Text = status;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement