Posts

Showing posts from February, 2018

Executing Selenium Script on chrome (opening and closing of browser)

Image
PRACTICAL 6:   Executing Selenium Script on chrome (opening and closing of browser) ·          Download Chrome Drive open   http://www.seleniumhq.org/download/ Here you will get third party driver section and you can get all the external driver for different browsers. In this module we are working on Microsoft edge and its web driver can be downloaded from: https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/ Figure 1 -download link of   Edge Driver ·          Here you will get the driver zip file which you can extract. ·          Set property in Environment Variables §   Go to My Computer and Right click to get the context menu. §   Click on the Change Settings on the opened window. Figure 2 -change settings §   Go to Advance tab in the System Properties window and click on...

Configure Eclipse with Selenium WebDriver

Image
PRACTICAL 5: Configure Eclipse with Selenium WebDriver Selenium is a portable software-testing framework for web applications. Selenium provides a playback (formerly also recording) tool for authoring tests without the need to learn a test scripting language (Selenium IDE). It also provides a test domain-specific language (Selenese) to write tests in a number of popular programming languages, including C#, Groovy, Java, Perl, PHP, Python, Ruby and Scala. The tests can then run against most modern web browsers. Selenium deploys on Windows, Linux, and mac OS platforms. It is open-source software, released under the Apache 2.0 license ·          Launch the Eclipse IDE & Create a Workspace §   Double click on ‘eclipse.exe’ to start eclipse. ·          Create a new Project §   Create new Java Project from File > New > Project. Figure 1 -creating new java projec...

Tutorial 3

Image
Ques 1: What is No-Sql? Answer: NoSQL is an approach to database design that can accomodate a wide variety of data models, including key-value, document, columnar and graph formats. NoSQL, which stand for "not only SQL," is an alternative to traditional relational databases in which data is placed in tables and data schema is carefully designed before the database is built. NoSQL databases are especially useful for working with large sets of distributed data. The NoSQL term can be applied to some databases that predated the relational database management system, but it more commonly refers to the databases built in the early 2000s for the purpose of large-scale database clustering in cloud and web applications. In these applications, requirements for performance and scalability outweighed the need for the immediate, rigid data consistency that the RDBMS provided to transactional enterprise applications. Notably, the NoSQL systems were not required to follow an ...
Image
PRACTICAL 4: Drawing Engineering Diagram Using Dia Dia is free and open source general-purpose diagramming software, developed originally by Alexander Larsson. Dia uses a controlled single document interface (SDI) similar to GIMP and Inkscape. Dia has a modular design with several shape packages available for different needs: flowchart, network diagrams, circuit diagrams, and more. It does not restrict symbols and connectors from various categories from being placed together. Dia has special objects to help draw entity-relationship models (obsoleted tedia2sql or newer parsediasql can be used to create the SQL DDL), Unified Modeling Language (UML) diagrams, flowcharts, network diagrams, and simple electrical circuits. It is also possible to add support for new shapes by writing simple XML files, using a subset of Scalable Vector Graphics (SVG) to draw the shape. Dia loads and saves diagrams in a custom XML format which is, by default, gzipped to save space. It can print l...

Installing MongoDB

Image
PRACTICAL 5 -Working with Document Database MongoDB ·   Download the MongoDB binary archive for windows platform from the given link https://www.mongodb.com/download-center?_ga=2.37736288.1708005425.1518409276-77077849.1516679731#production ·                                 Select Community Server Current Stable Release (3.6.2) Version : Windows Server 2008 R2 64-bit and later, with SSL support x64 Figure 1 -download window ·          In Windows Explorer, locate the downloaded MongoDB .msi file, which typically is located in the default Downloads folder. Double-click the .msi file . A set of screens will appear to guide you through the installation process  Figure 2 -install ·          Follow the instruction on set-up ...