Im trying to clone my repostry to my intellij but i cant see that src packet and i couldnt find any way can you help for this?
@RaghavPal Жыл бұрын
Yunus There are two possible reasons why you can't see the `src` package in your IntelliJ project: 1. The `src` package is not in the repository that you cloned. 2. IntelliJ IDEA has not yet imported the `src` package into the project. To check the first reason, open the repository in a file explorer and look for the `src` package. If the `src` package is not in the repository, then you will need to clone the repository again, making sure to include the `src` package. To check the second reason, open the IntelliJ IDEA project and look in the Project window. If the `src` package is not in the Project window, then you can import it manually by following these steps: 1. Right-click in the Project window and select **Import**. 2. In the **Import** dialog box, select **Existing Sources** and click **Next**. 3. In the **Choose Sources Root** dialog box, select the directory containing the `src` package and click **OK**. 4. In the **Import** dialog box, click **Finish**. IntelliJ IDEA will then import the `src` package into the project.
@ishanpal97793 жыл бұрын
Nice work 👌
@RaghavPal3 жыл бұрын
Thanks
@anuragvr7773 Жыл бұрын
How we can switch branches for project in intelliJ
@RaghavPal Жыл бұрын
Anurag To switch branches in IntelliJ IDEA, you can use the following steps: 1. Open the **Version Control** tool window. You can do this by clicking on the **Version Control** tab in the bottom right corner of the IDE, or by pressing `Alt`+`9`. 2. In the **Version Control** tool window, expand the **Branches** node. This will show you a list of all the branches in the project. 3. Select the branch that you want to switch to. 4. Click on the **Checkout** button. IntelliJ IDEA will then switch you to the selected branch. Here are some additional things to keep in mind: * If you are switching to a branch that has not been checked out before, IntelliJ IDEA will fetch the latest changes from the repository. * If you are switching to a branch that is behind the current branch, IntelliJ IDEA will ask you if you want to merge the changes. * You can also switch branches using the command line. To do this, open a terminal and navigate to the project directory. Then, run the following command: ``` git checkout ``` Replace `` with the name of the branch that you want to switch to. I hope this helps
@samplegmail23213 жыл бұрын
Why is automation so tough?
@RaghavPal3 жыл бұрын
Just try it, in some time you will feel its easy
@samplegmail23213 жыл бұрын
@@RaghavPal if I get a complex test case to automate how to approach it?
@RaghavPal3 жыл бұрын
depends on what is needed. In general you have to automate some scenario and will need to check all the tools, libraries, support you will need to automate it, Can check some examples too