LET'S DEVELOP TOGETHER YOUR SECURED PRODUCT, TEST IT AND OPTIMIZE IT FOR SUCCESS

Biometric authentification system pour web service and Citrix Windows avec biometric fingerprint et autres biometric méthode

Configure SauceLab automated mobile test with Appium

[caps] platformName = “Android” deviceName = “Android Emulator” platformVersion = “4.4” appium-version = “1.3.4” device-orientation = “portrait” app = “sauce-storage:Your.apk” record-video = “true” max-duration = “3000” command-timeout = “600” idle-timeout = “1000” language = “en” debug = “true” wait = “60” [appium_lib] sauce_username = “yourusernameonSaucelabs” sauce_access_key = “youracckey” server_url = “http://lusername:deviceeria@ondemand.saucelabs.com:80/wd/hub” debug = “true” wait …

Callback lifecycle of Beans in Spring Framework Part2 – LAzy annotation

@Service @Lazy //changes the moment when the bean instance is created ///will not display the actions in postconstruct and predestroy, the context is created and closed //PostConstruct and PreDistroy can also be called directly but this is not compliant to Spring standards //more ofther these methods are marked as private so that they should not …

Callback lifecycle of Beans in Spring Framework Part1

The java developer can use 2 standard Java annotations to interwine in a bean lifecycle inside a Spring context These annotations are used by ejb, jpa, spring, jsf contexts . @Postconstruct – used for any initialisation In not advisable to give values in a Bean constructor There is a chance that the Postconstructor should not …

@Qualifier annotation in Spring part 4

@Qualifier @Target(ElementType.FIELD,ElementType.CONSTRUCTOR,ElementType.METHOD,ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) /*Another way to use @Qualifier is to declare an annotation Target must declare type, method, constructor and field to be succesfuly recognized as annotation The java developer needs to declare retention policy runtime to be detected with by the Java Reflection mecanism this annotation can be used to replace @qualifier(bean name) */ …

@Qualifier annotation in Spring part 3

Let’s create a package service and define an interface called IMyService This Java interface will contain all the methods that a service can be able to offer In a memory zone such as IMyService (interface) we can add memory zones of type MyServiceA through polymorphism To identify this class the java coder will implement the …

@Qualifier annotation in Spring part 2

@Qualifier annotation in Spring To exemplify the use of @Qualifier annotation we should define an abstractisation of a bean Often the bean is abstracted and we should represent the bean through abstractisation not through a direct implementation Using a concret type of variable is not advisible to be used to indejected in an instance dependency …

How to parse a Json in Java using Jackson framework – Chapter 1

How to parse a json that is the response from a call to an Endpoint in Java Let’s assume we have the following response: { “took”: 4, “timed_out”: false, “_shards”: { “total”: 5, “successful”: 5, “failed”: 0 }, “hits”: { “total”: 2, “max_score”: 1, “hits”: [             {                 “_index”: “event1_201708”,                 “_type”: “banner_event”,                 …

First Steps to set up a test automation framework part 1 Maven Intelij Cucumber and Java

How to set up a test automation framework with Java Cucumber and Maven in InteliJ IDE Clone the following projects that will be required: Command -> git -c http.sslVerify=false clone https://Repository Select the JDK version the IDE will run under Start InteliJ Open the Project Structure dialog (e.g. Ctrl+Shift+Alt+S). Under Platform Settings, select SDKs and …

Notre mission

Assurer la qualité du développement logiciel  à la mise en œuvre technique et au développement de solutions de test et d’analyse des composants développés Réaliser les activités QA et soutenir le dossier de suivi de la qualité vis-à-vis des clients et autorités Promouvoir la démarche qualité Assurer des services de test logiciel et d’automatisation de …

Java interviu questions – Senior QA automation position

1. What is the difference between abstract classes and interface in Java? Abstract classes should be used when the Java developer wants to use non static, non final, non public fields. Interfaces can also have implemented methods (default methods in Java 8), this would not be a difference between the 2 anymore. Interfaces allow to …