Google Chrome or Firefox Login

CharlesH

Active Member
Joined
Apr 23, 2005
Messages
467
HI,

I'm trying to log in to a web site. I do not want to use "IE".
I have code using Selenium. But some user do not want to download add ins.
This is the code that I currently have for using "Selenium".
In this code you can see what I'm trying to do.
I have this same question at
Google Chrome or Firefox Login
snb made a suggestion. But I can not figure out his suggestion.
I hate to cross post. But.....

Thanks for looking at my request.

Code:
Sub Macro1() 
    Dim selenium As New SeleniumWrapper.WebDriver 
    Dim gobutton As WebElement 
    Dim goUsername As WebElement 
    Dim goPassword As WebElement 
    Dim FF As Object 
    Dim intRowPosition As Integer 
    Dim keys As New SeleniumWrapper.keys 
    selenium.Start "chrome", "http://www.hikashop.com/component/users/?view=login" 
    selenium.Open "/" 
    selenium.setTimeout ("120000") 
    selenium.setImplicitWait (55000) 
    Set goUsername = selenium.findElementByName("username") 
    goUsername.SendKeys "xxxxxxx@cableone.net" 
    Set goPassword = selenium.findElementByName("password") 
    goPassword.SendKeys "9999999" 
    Set gobutton = selenium.findElementByName("Submit") 
    gobutton.Click 
End Sub
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand

Forum statistics

Threads
1,214,622
Messages
6,120,572
Members
448,972
Latest member
Shantanu2024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top