Reputation: 43
My projects in Eclipse Kepler were working just fine until I downloaded TestNG. Post TestNG download, I am unable to click on Run button for my code. after I click on run or even if I hover over on run the following error message is displayed.
An internal error occurred during: "Compute launch button tooltip". java.lang.IllegalArgumentException
If I uninstall testing all my scripts run. But as soon as I reinstall Testing the issue reappears
I have tried the following methods:
Upvotes: 1
Views: 1953
Reputation: 193338
The error says it all :
An internal error occurred during: "Compute launch button tooltip". java.lang.IllegalArgumentException
You are unable to click on Run button for your code or after you click on Run when you hover over on Run you see the error because the labels of these buttons are calculated depending on the *.java file in the active editor. This issue can occur if there are two jars with same classes e.g. (selenium-server-standalone-3.9.1
and client-combined-3.9.1
).
So the possible solutions are :
Execute your Tests
Here you can find here a detailed discussion on "Compute launch button tooltip" error
Upvotes: 1