is it possible to use selenium web driver for AngularJS site? - protractor

We have very good Automation framework already in place which is in java/selenium to verify our web application but now our site will be migrated to Angular and we do not want to move to protractor. So shall we use selenium for Angular app ?

You can use selenium for Angular app but it is more suitable to use the protractor for Angular app testing, as it is built in framework for the Angular app.

Related

How can i automate Flutter Mobile Application

The development of our Mobile App is in Flutter framework using Dart language.
We are trying to Automate the Mobile App using Appium-web driver with the .apk/.ipa file. We don't want to use Flutter framework for automation. That is the purpose, we are trying to automate using Appium web-driver/Appium flutter driver.
But our team is facing few challenges in performing the Automation using Appium-web driver, we are looking for someone who can guide/help us.
Is there any solution that my Automation team can do automate using Appium-web driver?
Thanks & Regards,
Swetha

Which Protractor version supports Angular 8?

We already have protractor e2e tests for angular 7. Now the app is getting upgraded to angular 8. Does protractor 5.4.2 support angular 8? We are using chrome browser.
Protractor framework can find, interact etc. within sites that were implemented by Angular, Vue, React, js/html...
Protractor has just few Angular specific methods. It is:
waitForAngular(false/true): I suggest to make it false in onPrepare() block inside configuration protractor file. The reason of it that it was implemented for Angular 1. On current versions it works pretty unstable;
angular specific selectors. css or xpath quite enough for searching elements.

Can a gwt app be converted/packaged as windows universal app?

I have a gwt developed website that already runs 100% client-side (by which I mean no server-side javascript is used)
As one of the options for windows universal app development is javascript, is it possible to somehow turn a online gwt app into a offline uwp one?
I am aware there are solutions to package websites together with browser+installer, but if windows can run js 'natively' now (I assume via Edge) it seems a better route.
You can use UWP Javascript project from Visual Studio. This project allows you to add any HTML/CS/JS requires files. You can also use the Hosted model, where your files are downloaded from a URL (but then the app will require connectivity).
I've not tried the scenario, but I don't see any impediments, it should work.

Does Protractor tool support Windows desktop application for UI automation?

We have Web Application which interacts with Windows base desktop applications.Can Protractor be used to automate UI workflows for desktop application as well?
Protractor is nothing but a framework built on top of webdriver js to automate angular js web applications.It uses API's available in selenium jar file to communicate with the browser. Selenium doesn't have support to automate desktop applictions,hence protractor also cannot be used to automate desktop application.
It is possible to use RobotJs code within Protractor to control

How to integrate Magento 2 in BPM/camunda engine

I am new in BPM/camunda engine. I need to know How to integrate Magento2 in BPMN 2.0.
I searched about BPMN 2.0 https://docs.camunda.org/get-started/bpmn20/project-setup/ its only setup java project.
Magento 2 need php and web servers(apache, nginx) support, see this link http://devdocs.magento.com/guides/v2.0/install-gde/system-requirements.html
How can I setup magento 2 in Camunda-bpm tool? Suggest me any way to do this.
please see your answer here https://forum.camunda.org/t/how-to-integrate-magento-2-in-bpmn-2-0/1777/2
Camunda is running inside a java web container or application server, while Magento is using php. Which means that best you can get is running 2 servers, one with camunda and second one with Magento. Those servers may communicate with eachother using external Task and REST services.