Unable to login to wordpress with selenium wrapper because cookies are blocked?

Solution: 

I was able to login to the account without issues using the below code.

Private driver As SeleniumWrapper.WebDriver

Private Sub Login()
    Set driver = New SeleniumWrapper.WebDriver
    Call driver.Start("chrome", "https://wordpress.com/")

    driver.get ("/wp-login.php")
    driver.findElementById("user_login").Clear
    driver.findElementById("user_login").SendKeys "your userid here"
    driver.findElementById("user_pass").Clear
    driver.findElementById("user_pass").SendKeys "your password here"
    driver.findElementById("wp-submit").Click
End Sub

Hope this helps.