How to automate a webpage clientside? [closed] - java

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a way to perform automated input field filling and button submission on the clientside in a browser. I also want to write some logic based on which different form fields or buttons are to be clicked.
What is the tool of choice for this when knowing Java only, but already several years of experience?
Or could I use Seleniumhq for this? Could selenium implement some kind of "business logic" (like decimal computation) before deciding to click a specific button?

Selenium has two versions, a basic version called Selenium IDE and a version called "Selenium WebDriver" where you can use any one of many programming languages to control your browser session.
Since you are able to control the WebDriver in Java, you would be able to incorporate your decision- or business-related logic there.

Related

android/Windows Application viber(chat examples) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Improve this question
Does anybody have an example or a tutorial for Android/Windows Application like viber? I want to understand how viber works and how it is programmed and how it works with different application.
I want to see an example that uses a message-chat-system that can work with different application.
I tested different way to do this but I faced with problems, so I think that I did not choose good way to do it.
Thanks.
These kind of applications are developed using XMPP protocol and here is the sample for developing the server app in Google App Engine Using Java
Google App Engine and XMPP in Java
http://xmppjingle.blogspot.in/2009/11/google-app-engine-xmpp-services-example.html
http://googleappengine.blogspot.in/2009/10/interactive-xmpp-demos.html
http://googlecloudplatform.blogspot.in/2013/07/multi-channel-chat-with-twilio-and.html

How photo tag is made in facebook ? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
How photo tag is made in Facebook i want to know which programming languages tag is made with
and if any one have example he can share it with me
It's definitely done with javascript. Here is one of possible solutions (jQuery): http://karlmendes.com/2010/07/jquery-photo-tag-plugin/
The easiest way is to the use the graph API. For example, I could show Mark Zuckerberg's profile image with the following markup:
<img src="http://graph.facebook.com/4/picture?width=150" alt="mark's fb profile photo" />
Note that 4 is Mark Zuckerberg's user id. You could also use his username "zuck".
For documentation on the graph api, go to the facebook developer page
Edit:
Apparently the user was asking about the tagging feature. Facebook's platform is php, the ui of the feature is in javascript.

Making a video using java code or an open source tool? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have a script that executes a test case by opening a specific website, let me illustrate this by the following example -:
My script opens up the web page www.google.com
Enters some text in the search box
Presses the button search
Then clicks the first link on the search page.
The problem is that I need to make a real time screencast of this whole process i.e all the actions need to be captured, here I am not talking about the screenshots, I need this process to be integrated in my project, can anyone suggest me some tools or point me to any java library that does the trick for me.
Thanks in advance.
You can use freeware CamStudio - tool for recording all screen and audio activity on your computer. You can record video in Streaming Flash format or make the AVI file.

User intentions analysis [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm going to work on some project that would do a user-action recognition based on what he/she does in the system.
As far as I understand there are two main parts here :
intercept the user actions (say http traffic in web/ui interaction in thick-client)
analysis of user intentions
While the first part is rather technical and therefor easy to implement,
the second one is AI related and can be academic.
So I was wondering whether someone knows some third-parties/academic projects that would implement the 'action-recognition' stuff.
Thanks a lot in advance
I believe - Apache Mahout could help you. Look towards to collaborative filtering part of this framework.

Open source survey/questionnaire engine for Java [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there an open source survey engine for java that will allow branching of questions? i.e. Question 1 has the options of A, B, or C and they each take you to a different set of follow-up questions.
I've found a couple (JSurveyLib and Socrates QE), but those seem to be very tied to a GUI.
The application that I'm writing has a java back-end running on glassfish, and a flex front-end. Eventually there are plans for different font-ends, so the engine needs to be very independent of the GUI.
Please have a look at JCaiF - "The Java Computer Aided Interviewing Framework (JCaiF) is a collection of Java interfaces that define the common elements of a questionnaire or survey" - so perhaps you can implement your application against these interfaces.

Categories

Resources