Skip to main content

Posts

Showing posts with the label Analyse

Cypress UI Automation - part 1

Java to Cypress-JavaScript Automation Migration Introduction: Across Cancer Research UK engineering department, we currently use a Java automation framework for our User interface and API testing. The framework has evolved in the last 3 to 4 years and currently, we have 19 products/project, (running approximately 1350 test scenarios) using the framework to run the respective sanity/regression packs. The project/products extend across different technology stacks such as Drupal, Symphony, React JS, .Net, OBI and Siebel CRM.   The Quality Assurance (QA) test team are currently under the process to be transformed into a fully-fledged Quality Assurance function.   As part of this transformation, we would like to have a comprehensive, automated test suite that can be maintained by developers and testers. Furthermore, our front-end web development is moving into JavaScript, now is the right time to migrate our automation framework also from java into JavaScript. The introduction ...

Working with Software Downloads

Working with Software download. This testing does not requires user to subscribe to download software. User would have a limited time to then purchase software package com.consciousit.WebAndroidTest; import java.net.MalformedURLException; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.testng.annotations.AfterTest; import org.testng.annotations.BeforeTest; import org.testng.annotations.Test; public class ConsITLaptopTest { public WebDriver driver ; @BeforeTest public void beforeTest() { //instantiate Chrome Browser driver System.setProperty( "webdriver.chrome.driver" , "/Users/tester/Documents/webDrivers/chrome/chromedriver" ); driver = new ChromeDriver(); driver .get( "https://consciousit.co.uk" ); } @Test (priority=1) public void testDownloadBuy() throws MalformedURLException, InterruptedException { //d...

Software Development step by step - part 1

Human-computer interaction: Natural computing, people and systems This program would cover analysis, to requirements and design step by step - Introduction An opportunity to create an online train ticket system. To achieve the aims, there is a need to research on the current manual train ticket systems and then build requirements base on these. Design and prototype are to be developed to meet the requirements. An evaluation of the system design is to be conducted by the designer, before prototype of the system is developed. Designers are permitted to use three other users from the public to evaluate the prototype and details are to be recorded. A diagram of the break down of the system we are going to analyse. - the current system Task Analysis Diagram Actions Textual presentation Buying a train ticket 1. Choose a Train Station 2. Enter the ...