How to open Internet explorer from GUI while launching it from eclipse - eclipse

I have developed one GUI.In that when I click one button of GUI it should go to Internet Explorer.But when I launch this from Eclipse it is not directed to IE. I tried this from outside eclipse.That is working fine.Any setup is needed to open IE from GUI in eclipse?

I'm not sure if your refer to this, but inside Eclipse if you go to the Window menu -> Web Browsers and select Internet Explorer shoul done it.

Related

Right-click menu not showing in Selenium IDE

On this Selenium documentation page, it says "You can export either a test or suite of tests to WebDriver code by right-clicking on a test or a suite...", but when I right-click, I just get the web browser's right-click menu instead of Selenium-IDE's menu:
I have found that quitting Firefox and starting it again will give me the proper right-click menu, but wondered what I was doing to cause it, and if the developers know about this.
Firefox 71.0 (64-bit) on Windows 7
Selenuim IDE Version 3.16.1
This is because you are trying to export test from different tabs. 'Executing' tab is opened on your screen, but 'Tests' tab is opened on documentation screenshot .
About restarting Selenium IDE: 'Tests' tab opens as a main window after restart, so exporting is available there. When you start running tests in Selenium IDE 'Executing' tab automatically opens and exporting is not available. You should change tab by clicking on the tingle near tab name and select 'Tests' tab where you can export your test.
If you think that this is not correct behavior you should create issue here

LibGDX's HTML project doesn't show anything in Browser

The question is self explanatory, when I run my demo-html project as a Web Application and I open Chrome with the provided link by eclipse, my browser doesn't show the image it is supposed to show in a new project.. However, the tab displays the correct title "Demo". Can somebody help me with this?
Eclipse after Running the project:
And Chrome running the app:
You don't run it as web application. The simplest way is to run
gradle html:superDev
in command line. I'm not very familiar with Eclipse, so here a guide how to run it via IDE from the wiki:
Right click the html project, Run As -> External Tools Configuration. Create a new configuration by double clicking the Program entry in the left sidebar. Give the configuration a name, e.g. GWT SuperDev. Set the location field to the gradlew.bat (Windows) or gradlew (Linux, Mac) file. Set the working directory to the root folder of your project. Specify html:superDev as the Argument. Press 'Apply', then 'Run'. Wait until you see the message The code server is ready. in the console view, then open the URL http://localhost:8080/html. You can leave the server running. If you change code or assets, simply click the SuperDev Refresh button in the browser. This will recompile your app and reload the site.
In IntelliJ you can trivially run the gradle task itself.

remove project explorer from eclipse

I'm writing an Eclipse plugin and seem to have many issues with users using the plugin with the Project Explorer.
Is there a way to remove the Project Explorer from Eclipse so users won't be able to use it (not only hide it)? I provide the users with the Eclipse package so I can edit it and only then send it out.
Why is Project Explorer behaving so differntly than Package Explorer/Navigator?
Example of issues:
Double clicking on a file in the Project Explorer doesn't always open it. Right clicking on the file and choosing the Open option - works. F3 works as well. this issue seems related to the Eclipse bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=131326
My plugin has a tool bar that I set to be seen only when a project of my type is in focus. it works perfectly in Package and Navigator Explorers, but in Project Explorer, if a user points to a sub folder of the project, it is not recognized as my plugin's project and the tool bar does not appear.
Thanks!

How to launch an HTML file in an external web browser via a shortcut in the toolbar

Sorry, if this question is already ansewered! I have configured my external browser and I can launch any html file via right clicking this file and choosing open with.... What I would like to do is launching any file via a shortcut in the toolbar by just clicking on this shortcut and right click on file --> open with.... So if there is any possibility to get this shortcut, please tell me how?
i guess you refer to eclipse:
had the same problem, it's really annoying that there is no default behaviour of eclipse to deal with html files.
here is how i did it with pictures! ;)
http://dwaves.de/index.php/2014/01/16/eclipse-run-launch-html-htm-webpage-in-external-browser-external-tools-shortcut-hotkey/
eclipse as web editor – do it yourself – howto:
eclipse is per default configured to be used for java development.
but if you want to “run” a html site in your external browser… nada. You have to configure it yourself, like this:
1. download eclipse
2. start eclipse (this was tested with Eclipse Standard/SDK Version: Kepler Service Release 1 Build id: 20130919-0819)
3. install the plugin “web page editor” help -> new software -> select All Sites -> search for “web page editor” -> check the checkbox -> click next, next, agree, restart.
this is what you will get (when you r-click on a document and choose “open with” -> “web page editor”, reminds me of dreamweaver’s preview.
now in order to “launch” / start the website with a shortcut:
1. setup firefox as default browser: “window” -> preferences -> search for browser -> choose “external browser” and search for the firefox.exe
define external tool command
you should get a new command in your run-suitcase-symbol.
when you click it… firefox should launch your website.
in order to shortcut-this go again into preferences, search for “keys”
and asign a key-combination to the “Run Last Launched External Tool”
that’s the best way right now i know of.
Feel free to comment!

Eclipse, ColdFusion Builder, Debug in built-in browser

I've been using Eclipse Classic with the ColdFusion Builder 2 Plug-ins and I was wondering if there was a way to launch the debugger in a browser within Eclipse. I've seen a browser in Eclipse before, but I'm not sure where it's hiding... and if it's possible to launch the debugger within it instead of the external browser.
Thanks a lot!
With Eclipse classic the only way to open the Internal Web Browser are the following.
Open the Internal web browser view:
Window > Show View > General > Internal Web Browser
Or you can do this:
Create .html file
Right-click the file and choose open-with > Web Browser
The easiest thing to do would be to install the Webtools feature from the webtools update-site and then add the "Web Browser" action set to the perspective.
Right click toolbar and choose "customize perspective"
Go to command group availability
Enable "Web Browser"
This will add a "open web browser" action on the toolbar.