After long time i was working today on Selenium webdriver and i observed that navigating options arent working in Selenium.
I am woring in WIN10
I tried with all jar files, 2.53,3.01 with geckodriver.
Example: driver. is not displaying any autocomplete options and also it is throwing error if typed manually.
Also i observed a strange behaviour that, navigating options are working in my previously created project class file and if i create another class inside same project, navigating options or autocomplete options are not displayed and not working.enter image description here
Sometimes the issues occur related to .jar file which you have imported in your Eclipse ide. so you can use the project clean option
Project->clean
OR
You can remove the imported .jar file from your build path and reimport it again
Related
When I run/debug a project in Rider, I have somehow turned off the property that opens the browser window after the project has built successfully. I have checked Run > Edit Configurations and compared it against an API project I have that does open the browser when ran/debugged, and cannot see a difference. I did some searching online and didn't find a definitive answer, so I'm reaching out here.
If anyone knows the specific property/setting/whatever to toggle in order to get the browser to open when running/debugging the project, I would be most appreciative.
Here is what it looks like for one of our projects targeting .NET Framework 4.8:
While examining the Run/Debug configs between the project that wasn't doing the expected behavior and the API project that was, I noticed that in the non-working project's Run/Debug config, the URL property wasn't set. After setting that to the localhost value I had been using, the page would start up as expected.
i created a Javafx project using JDK 8 and when i tried to export it to a runnable .jar file, i got surprised that it doesn't run using CMD, and gives the following error :
"Javafx compenents are missing"
while it works perfectly during the compiling time(using the IDE) when i accessed the .jar files, i found it has just .class files (that i made), and the needed library files that haven't been exported (i made sure to select the "extract need library files extract required libraries into generated jar" option in Eclipse), is there a reason behind of this? and a way to solve it? thanks in advance
Ps: i tried this using Eclipse and Intellij IDE
I just wanna mention once again that I'm using JDK 8 where it has JavaFX library inside of it.
Did you try this?
There are detailed instructions on how to configure your IDE to run JavaFX with newer OpenJDKs (which do not come with JFX components in it).
It also explains how to create a new JavaFX Maven project from archetype, with all the necessary plugins to easily build your application while including the minimal Java components for it (using jlink).
This will ensure that anybody using your application will have those components.
I just opened my Django project in PyCharm and I can't run server. I also don't see most of the project files unless I switch from Project to Project Files but they are yellow highlighted and it says that I can't modify them.
What is happening and how to fix it? Yesterday, I had the same problem with Vue project, now the Vue project works and Django doesn't...
EDIT deleted .idea and restarted PyCharm and now there is almost nothing.
I think this is some kind of TypeScript plugin, but I don't know what it is.
I can't determine what it is based on my installed plugins. How can I run the analysis for whatever plugin this is on the whole project? Currently, I have to open each individual file and wait for it to run the mystery analysis.
This is a built-in Typescript language service; it can be turned on/off in Settings | Languages and Frameworks | TypeScript.
When using it, all dependent files are not sent to server on re-highlighting the current file - it would be too expensive. That's why highlighting is not updated until you open a file in editor. You can try using Compile All in TypeScript tool window to see all errors.
To have the errors from all files shown while editing, you can toggle Show project errors button in TypeScript tool window; but note that this would slow down the performance
I work on a Java based Play! project for severals months now and I'd like to import it completely in IntelliJ, meaning being able to run, compile, test and debug from IntelliJ, without the need to use the command line.
According to this post from Jetbrain, it seems to be possible, if I quote the article it says clearly : "Now you don’t need to switch between IntelliJ IDEA and Play console anymore. Everything is available right from your favorite IDE.", but I can't figure out a way to achieve this for now, even if I follow the tutorial provided by Jetbrains.
Here are the steps I've been throught :
Open my fav IDE IntelliJ ;)
Go to the project list window.
Import project
Import from external model and choose SBT as suggested in Jetbrains tutorial.
option "Use auto import" checked, option "create directories for empty content roots automatically" checked. Project SDK Java 1.7
Global sbt settings : JVM From project JDK.
Finish
By now, if I try to make the project and launch it from IntelliJ, I'll get scala compiling errors related to routes object. Thanks to this post, we can understand that this happens because scala routes are located to specific folders that needs to be included in IntelliJ sources settings for this project. So next step was :
File -> Project Structure -> Modules
Add target/scala-2.10/classes:target/scala-2.10/resources_managed:target/scala-2.10/src_managed as sources folders.
But my problem remains the same, routes object being unrecognized.
Notes : I have no scala facets in my project structure configuration nor can add one.
IntelliJ provides integrated support for the Play Framework for Scala and Java. Support is currently only available in IntelliJ Ultimate Edition (see the Frameworks and Technology section).
Assuming Ultimate Edition, the setup for Play is incredibly easy. Simply create a new project by importing build.sbt, then choose Add Framework Support and choose Play 2.
Once complete, you can start and stop Play using the Play 2 Run/Debug configuration. No command line necessary.
Here is a more in depth look at IntelliJ's Play project configuration.
You could try the command play idea if you are using play or activator idea if you are using activator. That will do the magic.