Micro blog about Answer to the Ultimate Question of Life, the Universe, and Everything.
  • Home
    • List all categories
    • Sitemap
  • Downloads
    • WebSphere
    • Hitachi902
    • Hospital
    • Kryptonite
    • OCR
    • APK
  • About me
    • Gallery
      • Italy2022
      • Côte d'Azur 2024
    • Curriculum vitae
      • Resume
      • Lebenslauf
    • Social networks
      • Facebook
      • Twitter
      • LinkedIn
      • Xing
      • GitHub
      • Google Maps
      • Sports tracker
    • Adventures planning
  1. You are here:  
  2. Home
  3. Windows

TestComplete

Details
Written by: Stanko Milosev
Category: Windows
Published: 13 May 2021
Last Updated: 15 May 2021
Hits: 1875
Here is my example of creating new project with SmartBear TestComplete

First I created new project:

This is how my Project Explorer look like now, please notice "Stores" and "TestedApps":
Then I created my tested script like this:

function Test1()
{
  TestedApps.GridDataSetBindingSourceAndTableAdapterDynamicExample.Run();
  let form1 = Aliases.GridDataSetBindingSourceAndTableAdapterDynamicExample.Form1;
  let dataGridView = form1.dataGridView1;
  form1.btnDisplay.ClickButton();
  
  //check if field 'LastName' of first row is 'Milosev'
  let cellValue = dataGridView.wValue (0, 1).ToString().OleValue;
  if (cellValue != "Milosev")
  {
    form1.Close();
    Log.Error("Field 'LastName' of first row is not 'Milosev', it is: " + cellValue);
  }
  
  form1.btnAdd.ClickButton();
  form1.btnDisplay.ClickButton();
  
  //check if number of rows is 2
  let rowCount = dataGridView.wRowCount;
  if (rowCount != 2)
  {
    form1.Close();
    Log.Error("There are no 2 rows, there are: " + rowCount + " rows");
  }
    
  //check if field 'LastName' of second row is 'Mustermann'
  cellValue = dataGridView.wValue (1, 1);
  if (cellValue != "Mustermann")
    Log.Error("Field 'LastName' of first row is not 'Mustermann'");
  
  form1.btnDelete.ClickButton();
  form1.btnDisplay.ClickButton();
  form1.Close();
}

I have added my script to Execution Plan, and executed test:

List of Windows application which I like

Details
Written by: Stanko Milosev
Category: Windows
Published: 13 May 2021
Last Updated: 19 June 2021
Hits: 1595
CamStudio
FileZilla®
Agent Ransack
HeidiSQL
VLC for Windows
Replay Media Catcher
Hawkeye2 and here my release build.

Word: Stop Ruler from "Snapping"

Details
Written by: Stanko Milosev
Category: Administration
Published: 26 December 2012
Last Updated: 30 November -0001
Hits: 5204

Get precise and fine-tune your adjustments on the ruler by holding down the Alt key on your keyboard while you move things around. This will allow you to set very specific tabs and indents without having the "snap to" feature get in your way.

From here.

Tor: anonymity online

Details
Written by: Stanko Milosev
Category: Administration
Published: 27 June 2009
Last Updated: 30 November -0001
Hits: 6642

If you want to browse the Internet anonymously, then Tor is best solution for you.

If I understand good, your packets are encrypted, and sent to relay proxies, which then decrypt packets and send them on right place.

In todays the Internet closing, like in Iran or China, or, as much as I know, USA's spy on the Internet traffic (try to contact Osama Bin Laden over the Internet and soon CIA agents will knock on your door probably Laughing), or if you just want to visit porno sites on your job, tool like this is neccessery.

It look like surfing the Internet is a bit slower, when I hit google I got Italian instead of Slovenian (it depends on what relay are you attached), and I tested it ONLY from FireFox, and SmartSniff, but it is working.

Before using it, read what Tor does and does not do for you, to be shure that you are protected, and enjoy in your anonimity Cool

  1. Force windows to "forget" a network share password
  2. Edit value in custom fields
  3. Open Command Window Here
  4. Enable Windows 7 Quick Launch Toolbar

Subcategories

Administration

MS Outlook 2007


Windows 7


GIT

Powershell

Windows 8

Notepad++

Page 1 of 7

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7