Can we automate Electron app with protractor? - testing

There is a application which is built on top of electron.js acts as desktop application, is automated using protractor due to slight changes Dev team is providing build to QA as .exe file.
So I want to use the existing scripts.
Please let me know if there is any possibility that Electron app can be integrated with protractor framework, if not suggest any other open source tool which can we used to automate Electron app other than Spectron.

Related

How to integrate an external app into IntelliJ plugin?

I want to build an Android Studio plugin (IntelliJ plugin) which can open an external app by pressing the button. The external app is developed by myself and is quite small. I hope to integrate it to the IntelliJ plugin so users only need to install the plugin instead of installing the app explicitly.
So is it possible for me to package the app into the plugin? I have tried putting the .app file under the resources folder but I don't know how to open the app programmatically. Or is there any other way to achieve my purpose?

I want to add Appium (Script)Recording & Playback Functionality in Project is it possible

as we know Appium has functionality to generate script for Mobile Testing. actually I want to to add this functionality in project. is it possible using java.
You have to implement the functionality by yourself, probably build a full app.
Appium-Desktop is s Node.js application, if you are familiar with js you can get idea for implementation from source code

Fabric initial deployment

i'm a little bit stuck with a problematic.
I'm trying to use continuous integration to build my app and deploy them to Crashlytics.
I've tried a lot of different solutions (Fastlane, Gradle, manual execution). Theses solutions are working when my application was already deployed with the Fabric.app and the Android Studio Fabric Plugin.
But, when i'm trying to deploy a new application, everything is working fine, i've got this message at the end :
fastlane.tools finished successfully
One the Fabric dashboard, i'm unable to find my application.
Is there any way to build and deploy applications for the first time without Fabric.app and Android Studio Fabric Plugin ?
Yes! But you will need to integrate Crashlytics, and build and run the app. We need to detect both a build and run event per bundle ID or package name in order to provision your app in our system.
Thanks!

How to view .net application in chrome or firefox browser

I wrote project using vb.net with devexpress forms , my question is there way to view my applicatin in browser like java applet or oracle forms.
I don't think it is possible to run an executable file built for windows could run in a browser independently. JAVA is platform independent that's why we are able to run JAVA apps in browser, even we cannot run android apps directly into browser, we have to have complete android emulator device to run android apps. In the same way, we cannot run executable files directly into browser, because they are generated with respect to underline hardware platform

Testing in Android Studio with Selendroid

I want to test Apps with and in Android Studios!
I know already Espresso, Robolectric, Robotium etc.
But the most tutorials are with Eclipse like testing with Selendroid!
Now I want to test with Selendroid writing the tests in Android Studio.
Do you have any suggestions how to get through or any tutorial links?
I would also be happy for other suggestions for Testing Android, mostly
UI testing with many fragments?
The Android SDK provides the following tools to support automated, functional UI testing on your application:
uiautomatorviewer - A GUI tool to scan and analyze the UI components
of an Android application.
uiautomator - A Java library containing APIs to create customized
functional UI tests, and an execution engine to automate and run the
tests.
To use these tools, you must have the following versions of the Android development tools installed: * Android SDK Tools, Revision 21 or higher * Android SDK Platform, API 16 or higher
Read about Analyzing Your Application's UI, Preparing to Test, Creating uiautomator Tests, Building and Deploying Your uiautomator Tests, Running uiautomator Tests you can here http://developer.android.com/tools/testing/testing_ui.html#running