Login via Excel

rakupareek

New Member
Joined
Dec 29, 2023
Messages
34
Office Version
  1. 2016
Platform
  1. Windows
Hi
I want login incometax website via Excel directly
There are F1 is my login I'd and G1 is password
I want to open given website and fill Login Id and password automatic
Photo attached for your reference
 

Attachments

  • 20240106_121943.jpg
    20240106_121943.jpg
    98.5 KB · Views: 12

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
VBA Code:
Enter login and password on a web page from excel



Here is a way to do it using the sendkeys.

sub PageWeb ()
Dim IE As Object
Set IE = CreateObject ("internetexplorer.application")
IE.Navigate ("http://www.zaza.com/")
IE.Visible = True: IE.Top = 0: IE. Left = 0
IE.Width = GetSystemMetrics32 (0)
IE.Height = GetSystemMetrics32 (1)
Application.Wait Now +
5/3600/24 SendKeys ("loginZaza")
SendKeys "{TAB}"
SendKeys ("passwordzaza ~")
Application. Wait Now + 5/3600/24
Set IE = Nothing
Enter login and password on a web page from excel
 
Upvote 0
Sub Login()
Dim Chromepath As String
Dim username As String, password As String
Chromepath = """C:\Program Files\Google\Chrome\Application\chrome.exe"""
Shell (Chromepath & "-url e-Filing Home Page, Income Tax Department, Government of India")


Application.Wait Now + TimeValue("00:00:05")
username = Worksheets("Login").Range("F1").Value
password = ThisWorkbook.Sheets("Login").Range("G1").Value
I AM USING THIS VBA CODE TO OPEN WEBSITE WHERE I WANT TO LOGIN BY USERNAME & PASSWORD
A CHECK BOX OPEN FOR CONFIRM SECURE LOGIN AFTER ENTRING USERNAME AND ENTER
AFTER TICK ON CHECK BOX PASSWORD WINDOW OPEN
THERE SHOULD BE LOGIN AT THIS WEBSITE AFTER ENTERING PASSWORD AND PRESS ENTER.
PLEASE HELP TO COMPLETE THIS CODE.
 
Upvote 0
08-10-2022, 09:05 AM#5
mogul
mogul is offline

Forum Contributor
reputation_pos.png
Join Date02-25-2022LocationDallas, TexasMS-Off VerOffice 365Posts174

Re: Accessing password protected webpage in Google Chrome via VBA​

There is no standard way to login. You'll need to use Chrome's Development Tools to examine webpage and see how it is constructed. You can use Selenium to login. Selenium is a standard way to interact with webpages. There is a VBA COM Selenium addin you use called SeleniumBasic. You'll need to update Chromedriver for your version of Chrome. You need to have a basic understanding of HTML and CSS. Below is an example:
Attached Files
Attached Files

Accessing password protected webpage in Google Chrome via VBA
 
Upvote 0

Forum statistics

Threads
1,215,437
Messages
6,124,871
Members
449,192
Latest member
MoonDancer

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