Articles

Loading

Automation without using any automation tools

Test Automation
Author
siva1986
Date
2012-08-17 19:15
Views
10356800

Hi friends,

We can automate Google without using any automation tools.Thanks

Automation without using any Testing Tools. Automating this test with an instance of the
Internet Explorer object
.


 


 


Option Explicit


Dim objIE, objLink

Set objIE = OpenBrowser("http://google.com")



' View the HTML source on Google's page to see the 'q' and 'btnG' values

objIE.Document.All(
"q").Value = "Easy way to automate testing"

objIE.Document.All(
"btnG").Click

WaitForLoad(objIE)



' Find a link to http://motevich.blogspot.com

Set objLink = GetLinkByHref(objIE, "motevich.blogspot.com")



' If found, then click it

If (False = IsNull(objLink)) Then

    objLink.Click

    WaitForLoad(objIE)

End If



' Close IE window

objIE.Quit

WScript.StdOut.Write(
"Script completed successfully...")





''''''''''''''''''''''''''''''''''''''''''''''

' Functions 



' Opens IE and navigates to specified URL

Private Function OpenBrowser(URL)

    
Dim ie


    
Set ie = CreateObject("InternetExplorer.Application")



    ie.Visible = 
True

    ie.Navigate2 URL

    WaitForLoad(ie)

    

    
Set OpenBrowser = ie


End Function



' Waits for page fully loaded

Private Sub WaitForLoad(ie)

    
Const WAIT_TIMEOUT = 100



    
While (ie.Busy) or (ie.ReadyState <> 4' READYSTATE_COMPLETE = 4

        WScript.Sleep(WAIT_TIMEOUT)

    
Wend

End Sub



' Gets Link by 'href' attribute.

' Note: If your need, you can write another function - GetLinkByText

Private Function GetLinkByHref(ie, href)


    
Dim Link


    

    
For Each Link In ie.Document.Links

        
If Instr(LCase(Link.href), LCase(href)) > 0 Then

            
Set GetLinkByHref = Link

            
Exit Function


        
End If

    
Next



    
Set GetLinkByHref = Null


End Function


 

Total 2

  • 2011-11-13 22:41

    nice posting


  • 2012-02-14 13:24

    Helpfull


Total 20,613
Number Title Author Date Votes Views
20613
SileniusStor is specialized in reselling Cheap Aquafadas software online.
Softwareces | 2022.09.15 | Votes 0 | Views 9019861
Softwareces 2022.09.15 0 9019861
20612
CSStore is specialized in reselling Cheap Steinberg software online.
Softwareces | 2022.09.04 | Votes 0 | Views 8998891
Softwareces 2022.09.04 0 8998891
20611
Software Tester Community Website
ItSeTsQtBer | 2021.04.11 | Votes 0 | Views 9927086
ItSeTsQtBer 2021.04.11 0 9927086
20610
SoapUI Certification Course Content
Steveskok | 2021.02.08 | Votes 0 | Views 9837256
Steveskok 2021.02.08 0 9837256
20609
JavaScript Course Content
Steveskok | 2021.02.08 | Votes 0 | Views 9906697
Steveskok 2021.02.08 0 9906697
20608
Why most mobile testing is not continuous?
(TestExpert) | 2021.02.04 | Votes 0 | Views 10188292
(TestExpert) 2021.02.04 0 10188292
20607
8 Common Mistakes When Planning and Documenting Your Tests
(TestExpert) | 2021.02.04 | Votes 0 | Views 9977452
(TestExpert) 2021.02.04 0 9977452
20606
Types of Performance Testing
Jamessmith | 2021.01.17 | Votes 0 | Views 9530512
Jamessmith 2021.01.17 0 9530512
20605
How to Build E2E Test Cases (1)
tanthanh | 2020.05.28 | Votes 0 | Views 9814395
tanthanh 2020.05.28 0 9814395
20604
[White Paper] Delivering better software using Test Automation
tanthanh | 2020.05.28 | Votes 0 | Views 9233598
tanthanh 2020.05.28 0 9233598
20603
[Whitepaper] How to choose the right API Testing Solution
tanthanh | 2020.05.28 | Votes 0 | Views 9658802
tanthanh 2020.05.28 0 9658802
20602
[Whitepaper] How to choose the right API Testing Solution
tanthanh | 2020.05.28 | Votes 0 | Views 9580702
tanthanh 2020.05.28 0 9580702
20601
TestOps Introduction
VTB | 2020.03.23 | Votes 0 | Views 9647262
VTB 2020.03.23 0 9647262
20600
TestOps Implementation Case Study
VTB | 2020.03.23 | Votes 0 | Views 9952103
VTB 2020.03.23 0 9952103
20599
Selenium Automation Tester Certification Sample Exam Set 3
(TestExpert) | 2020.02.03 | Votes 0 | Views 9724586
(TestExpert) 2020.02.03 0 9724586
20598
Selenium Automation Tester Certification Sample Exam Set 2
(TestExpert) | 2020.02.03 | Votes 0 | Views 9734271
(TestExpert) 2020.02.03 0 9734271
20597
Selenium Automation Tester Certification : Sample Exam Set 1
(TestExpert) | 2020.02.03 | Votes 0 | Views 9534693
(TestExpert) 2020.02.03 0 9534693
20596
What is agile testing? why is agile testing? and what is the benefits? (20)
oishichip | 2019.12.26 | Votes 0 | Views 10180451
oishichip 2019.12.26 0 10180451
20595
Crowd Testing — Vantagens para testadores, plataformas e clientes [pt-br]
soikmd2 | 2019.12.14 | Votes 0 | Views 9955475
soikmd2 2019.12.14 0 9955475
20594
Software Testing Industry Report (Turkey) 2018-2019 (2)
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 10032625
ItSeTsQtB 2019.08.08 0 10032625
20593
How to bypass security in integration tests in ASP.Net Core
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 10461804
ItSeTsQtB 2019.08.08 0 10461804
20592
For agile testing, fail fast with test impact analysis
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 9690168
ItSeTsQtB 2019.08.08 0 9690168
20591
Career Path in Software Testing
^Software^ | 2019.07.28 | Votes 0 | Views 9867704
^Software^ 2019.07.28 0 9867704
20590
Challenges in Big Data Testing
^Software^ | 2019.07.22 | Votes 0 | Views 9867048
^Software^ 2019.07.22 0 9867048
20589
Essential Necessities In Big Data Testing
^Software^ | 2019.07.22 | Votes 0 | Views 9827214
^Software^ 2019.07.22 0 9827214
20588
5 Test Data Generation Techniques
^Software^ | 2019.07.22 | Votes 0 | Views 10141459
^Software^ 2019.07.22 0 10141459
20587
CI and CD for ETL (Extract-Transform-Load) testing.
^Software^ | 2019.07.22 | Votes 0 | Views 9827639
^Software^ 2019.07.22 0 9827639
20586
Quest for Quality Conference : 5-6 Nov 2019 at Dublin, Ireland
VTB | 2019.07.08 | Votes 0 | Views 9579126
VTB 2019.07.08 0 9579126
20585
TestBash Essentials Conference 2019
VTB | 2019.07.08 | Votes 0 | Views 9726952
VTB 2019.07.08 0 9726952
20584
UKSTAR Conference : 11-03-2019
VTB | 2019.07.08 | Votes 0 | Views 9711373
VTB 2019.07.08 0 9711373
20583
Testing in Context Conference Australia (TiCCA) 2019
VTB | 2019.07.08 | Votes 0 | Views 9895433
VTB 2019.07.08 0 9895433
20582
European Testing Conference 2019
VTB | 2019.07.08 | Votes 0 | Views 9751866
VTB 2019.07.08 0 9751866
20581
Automation Guild Online Conference 2019
VTB | 2019.07.08 | Votes 0 | Views 10097036
VTB 2019.07.08 0 10097036
20580
Software Quality Days 2019 : 15 Jan 2019 (1)
VTB | 2019.07.08 | Votes 0 | Views 9887023
VTB 2019.07.08 0 9887023
20579
Skills required to become a Software Tester (1)
IT-Tester | 2019.07.08 | Votes 0 | Views 9607559
IT-Tester 2019.07.08 0 9607559
20578
Automated Unit Testing with Randoop, JWalk and µJava versus Manual JUnit Testing
IT-Tester | 2019.07.08 | Votes 0 | Views 9626865
IT-Tester 2019.07.08 0 9626865
20577
Scrum Testing Guide Book (2)
IT-Tester | 2019.06.26 | Votes 0 | Views 9376990
IT-Tester 2019.06.26 0 9376990
20576
Acceptance Testing Definition in Testing vs Scrum
IT-Tester | 2019.06.26 | Votes 0 | Views 9530336
IT-Tester 2019.06.26 0 9530336
20575
User Acceptance Testing Checklist
VTB | 2019.06.20 | Votes 0 | Views 9627975
VTB 2019.06.20 0 9627975
20574
Firewalls and Types (1)
VTB | 2018.11.14 | Votes 0 | Views 9546203
VTB 2018.11.14 0 9546203
20573
Senior Test Engineer (1)
VTB | 2018.11.05 | Votes 0 | Views 9821833
VTB 2018.11.05 0 9821833
20572
Junior Test Analyst
kornadian2 | 2018.11.04 | Votes 0 | Views 9736645
kornadian2 2018.11.04 0 9736645
20571
Senior Test Engineer
kornadian2 | 2018.11.04 | Votes 0 | Views 9843058
kornadian2 2018.11.04 0 9843058
20570
Programme Test Manager, 12m, Immed Start, $NEG
kornadian2 | 2018.11.04 | Votes 0 | Views 10019733
kornadian2 2018.11.04 0 10019733
20569
Junior Test Analyst
kornadian2 | 2018.11.04 | Votes 0 | Views 9766069
kornadian2 2018.11.04 0 9766069
20568
Dev & Test Manager
kornadian2 | 2018.11.04 | Votes 0 | Views 9755687
kornadian2 2018.11.04 0 9755687
20567
Senior Test Analyst (Performance Tester)
kornadian2 | 2018.11.04 | Votes 0 | Views 9649104
kornadian2 2018.11.04 0 9649104
20566
QA Automation Test Analyst
kornadian2 | 2018.11.04 | Votes 0 | Views 9738700
kornadian2 2018.11.04 0 9738700
20565
Software/Field Testing Engineer
kornadian2 | 2018.11.04 | Votes 0 | Views 9500552
kornadian2 2018.11.04 0 9500552
20564
Compliance Technician (Tester)
kornadian2 | 2018.11.04 | Votes 0 | Views 9730835
kornadian2 2018.11.04 0 9730835