Testing a Web and Mobile Application [closed] - java

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I have a odd situation where I am writing a TestNG test that us written using Selenium. We have a new requirement now that is testing the same application on a cell phone that is a native app. I started playing around with Appium to test the native side with Selenium on the web side but I was struggling on how to tie this all together. So, I thought I was just testing two apps but it is actually one application flow that transcends both the native app and web app which is the monkey wrench.
Our tests take a long time to run as it seems to wait on each application. The 2nd problem is that we are not Java developers per-se (a small QA team).
So, my LONG winded question here is should we be using Selenium / Appium in this situation and is there any recommendations for handling multiple devices?
Thanks,
N

We used xframium at my last job before I left. Check out the keyword for devices (http://xframium.org/keyword.html#kw-adddevice). It is all open source software you can get what you need although the xml stuff was pretty cool

Related

Android app and using php/mysql as a Restful solution [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I am creating an android app that will use the database intensely and use a lot of Json to read the output from the database over the internet. I know that PHP is an interpreted language but would this cause an issue when creating an android app from a performance standpoint when you have many users? or would I be better off with Java/MySQL. I know both PHP and Java just thinking long term here.
PHP works fine with huge number of users. It definitely wins for rapid development and release. You can scale your servers when the need arises. Imo, use any language/framework you are most comfortable.

Please suggest approach for Java-based web app [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm a Java developer that hasn't coded in about 5 years and wants to polish up my skills. I am going to create a small app that uses an OAuth 2.0 authentication flow and then makes a few REST calls and displays the results. I've got my credentials setup with the OAuth provider.
I used Eclipse back in the day, is that still a solid IDE for this type of project? If I want to share the app with others to show my work, where could I host the code?
Thanks for these and any other pointers.
first off - yes, Eclipse if still a good choice.
if you can, make you app a web-application, and then you can host it in PaaS such as Google AppEngine. then the app itself will be always accessible from any machine that is connected to the web. this way, you will be able to show it to anyone you want.
if you only want to show the code, then GitHub or Google Code are a good choices.
HTH

How to run same java project in different systems using threads [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Actually, i'm trying to run the same java selenium automation framework in multiple systems using their IP address. Is this possible in threads using different instances ?
How? is this possible ?
This will be possible suppose the automation is written as a test script then selenium instances will be called from python or java. Then you may implement the threading from the test script. This will lead to the script opening a lot of browsers at the same time, then it will need to be executed on a powerful computer, with sufficient amount of CPU load and RAM to support such numbers of browsers.
This is not an usual practice since the idea of using selenium should be to perform black-box and functional testing. While something that needs threading sounds more like a performance or stress test, which should be done with unit testing codes, e.g. JUnit

How can I system test Java desktop applications? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
There are lots of tools to perform end-to-end testing of web-based applications (for example, Selenium). Is there something similar to test a desktop Java application that runs directly on the user's computer?
WindowTester from Google.
WindowTester Pro (also known as just WindowTester) eliminates the need
to manually create test cases to test GUIs by automating the process
of GUI testing.
Eclipse Jubula is what you are looking for.

Licensing a java web based application [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am developing a web application that will be sold later on, and was wondering how to add the concept of license to it, so that I can avoid it's piracy, and it can be used for given period of time only?
You can have a centralize licence server , have a DB to check user's status , expose this thing using webservice so that any of your app can consume it.
I've seen Java enterprise tools do the usual serial number/license file thing. Worked pretty well for them. All you'd need to do is put some static code in the application that would execute when the JavaEE container loads the WAR file and have that check the serial number.

Categories