Automaticly Click a button on a remote website Every 50 Minutes? [closed] - java

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 7 years ago.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question
I got a mine craft server online (https://server.pro/control-panel/1446793/) and I need to click the restart button every 45-55 Minutes. How can I do this? Is it possible to Do using GC (google code)? If not do i use java? Is it even possible? I have no idea what to do. Any response is helpful (even if it says something I have done wrong :) )
If i do need to use JAVA what program would i use to make the script (If there is one)

I am not familiar with either of those languages, however I have made an autoclicker in C. It can be found here. If you are unwilling to use mine, there are many other autoclickers out there.

There are many ways to do it. You could write some javascript that is injected into the page by plugin. You could also do it in Java with a Robot although that would be more hacky than the first solution. Also the Selenium library may help you as it's used for writing tests that will click different things on the web page.

You don't need to click the button from the remote to restart the server.
You can do that with a plugin, for example auto-restart plugin

Related

Java - browser automation? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
So, I need to write software that automates some browser tasks for me. Nothing fancy (clicking and getting data from the webpage). I want to use Java. Can you point me in a direction where to look/start, like libraries?
Thanks in advance!
Cheers
It is written for the purpose of running automated tests against websites, but you could use it for this job too: Selenium.
However, before you try to automate an entire browser, check if the service you're connecting to has an API, because otherwise your script will definitely just break if the site updates its styles a bit.
Even if there is no API, check if the answers you are looking for are just sent in the HTML - if so, just load the page with JSoup and parse the answer right out, no need to start or script any browsers.

How to deploy a Java Game on my personal website? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I built a Java game for a CS class. The code can be found here. The main class is Game.Java found here. I have a simple static website hosted on GoDaddy found here. I would like to allow a visitor to my website to play the game on a web browser I don't have a server yet, so I'll buy a basic
VPS through GoDaddy. Besides that, what's the best way to go about it? I think Applet is no longer supported by Chrome. Is Java Web Start the only way now? I would prefer if the visitor doesn't have to download anything. Any supporting material or YouTube video would be helpful as well.
Java is no longer supported by any modern browser, so the only way people will be able to play your game is to either include a client-side, JS/WASM-based library that sets up a complete JVM and then running the game inside of that on your page, or by giving people a link to your game's .jar file, so that they can download and run it on their own computer.

Looking for a "web-scraping script builder" [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm writing the code to access and download data from some web sites using HTMLUnit.
I was wondering whether a tool that could help me exists. I think maybe to a visual tool, something that lets you express the path you want to follow on the web sites visually and generates the Java code.
I'd like something for HTMLUnit, but I'm open to other solutions.
Writing screen-scraping code gets very repetitive :(
I used to work at screen-scraper. Not sure if it's quite what you're looking for, but it's definitely a powerful tool for building web-scraping scripts.
Not exactly visual tools, but maybe you could use something like JMeter or The Grinder for recording navigation scripts of web pages. They surely are easier to use than writing all the input requests by hand in HTMLUnit.
There is only one tool that does exactly this - and does it very very well - but it's highly expensive, since their technology is amazing. Some of the biggest companies uses this. I think you might be able to get a free trail, if you want to try it out. http://kapowsoftware.com/

Best framework for build in help system for java based web application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking for a framework that will help me to build help system for my java based web application. Would be great if it will be the system that easy to use and maintain but provides all features average help system needs.
At the moment I see it as a some kind of system that will produce bunch of html pages with search functionality located in http://host/MySuperApp/docs/. The documentation will have a lot of code snippets and graphics. At the moment multilanguage support is not really needed even it is standard feature this days.
Any other features that are great but I wasn't thinking about them yet are welcome.
Any suggestions are appretiated,
Thank you guys in advance!
Some years ago, I worked with the Eclipse Help System. Eclipse is not necessarily needed to integrate it in your project. Its helpfiles are also based on .html pages. Unfortunatly I dont know if they continue developing it, but at this time it already provided all the aspects you would expect from a help system.
There are a lot examples out there on how to integrate it in your project, but its possible, that maybe there are already better frameworks today.
Have you tried http://www.sphinx-doc.org/en/stable/. It was initially created for python. Very easy to use.

Where to look for open source Java libraries? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for a Java library to incorporate into a demo web app and have looked on github, Google Code and sourceforge. So far, sourceforge seems to have the biggest selection. Are there any other places to look, or is sourceforge going to be my best bet?
I believe you should take a look on Java-Source.net and OpenSymphony
Perhaps instead of just wandering randomly, you could tell us what kind of library you need and listen to recommendations. That said, obvious sites include Apache, particularly Jakarta, and Savannah. Also note that not everything hosted on GitHub is FOSS.
Freshmeat is also a large source of open source projects. Here is a list of projects tagged as Java libraries.

Categories

Resources