Skip to content

Commit

Permalink
Update issue template
Browse files Browse the repository at this point in the history
  • Loading branch information
bonigarcia committed Sep 1, 2023
1 parent ef27406 commit 67b22b6
Showing 1 changed file with 27 additions and 10 deletions.
37 changes: 27 additions & 10 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,36 @@
<!-- Please make sure that it is an issue or a feature request. If you have questions on how to use WebDriverManager properly with a special configuration or suchlike, please consider asking a question on Stack Overflow (https://stackoverflow.com/questions/tagged/webdrivermanager-java) and tag it with webdrivermanager-java -->
<!-- Before opening an issue, please consider the following: -->

<!-- 1. Ensure you are using the LATEST verison of WebDriverManager. Old versions might have some bugs already fixed in the current stable version. -->

<!-- 2. The WebDriverManager documentation contains a section about "known issues". Please check out this page just in case your problem is already known: https://bonigarcia.dev/webdrivermanager/#known-issues -->

<!-- 3. Please follow these guidelines to report any issue and DO NOT SKIP any part, or your case will be closed as "invalid". -->

<!-- 4. Please make sure that it is an issue or a feature request. If you have questions on how to use WebDriverManager properly with a special configuration or suchlike, please consider asking a question on Stack Overflow (https://stackoverflow.com/questions/tagged/webdrivermanager-java) and tag it with webdrivermanager-java -->


**Description of the problem**: <!-- Describe the expected and the actual behavior. -->

**Browser and version**: <!-- Fill here the browser (and its version) you are trying to drive with Selenium WebDriver. For example: Chrome 75. If you are not sure of the version, open this page with your browser: https://www.whatismybrowser.com/ or http://www.bbc.co.uk/accessibility/guides/which_browser.shtml -->
**Browser and version**: <!-- Fill here the browser and its version you are trying to drive with Selenium. For example: Chrome 116. If you are not sure of the version, open this page with your browser: https://www.whatismybrowser.com/ -->

**Operating system and architecture**: <!-- Fill your operating system (Ubuntu 16.04, Windows 10, OSX Yosemite, etc.) and architecture (32, 64 bits) here. -->

**Operating system**: <!-- Fill your operating system (Ubuntu 16.04, Windows 10, OSX Yosemite, etc.) and architecture (32, 64 bits) here. -->
**Selenium version**: <!-- Fill the Selenium version here (e.g., 4.12.0). -->
```
```

**WebDriverManager version**: <!-- Fill the WebDriverManager version here. Notice that the latest version of WebDriverManager is always recommended. If you are using an old version, consider to update it before creating this issue. -->
**WebDriverManager version**: <!-- Fill the WebDriverManager version here. Notice that the latest version of WebDriverManager is always recommended. If you are using an old version, please update it before creating this issue. -->
```
```

**WebDriverManager call**: <!-- Copy here your code in which you are using WebDriverManager (e.g. WebDriverManager.chromedriver().setup();). -->
**WebDriverManager call**: <!-- Copy here your code in which you are using WebDriverManager, e.g. WebDriverManager.chromedriver().setup(); -->
```
```

**WebDriverManager traces**: <!-- Copy the WebDriverManager traces here. This information is very important to analyze your issue, so please do not skip this part. If you are not using a logger in your project (logback, log4j, etc), please consider using one before creating this issue (see a tutorial here https://www.stubbornjava.com/posts/logging-in-java-with-slf4j-and-logback). For instance:
2019-06-13 09:42:30 [main] INFO i.g.bonigarcia.wdm.WebDriverManager.detectDriverVersionFromBrowser(575) - Using chromedriver 75.0.3770.8 (since Google Chrome 75 is installed in your machine)
2019-06-13 09:42:30 [main] DEBUG io.github.bonigarcia.wdm.Preferences.putValueInPreferencesIfEmpty(66) - Storing preference chrome75=75.0.3770.8 (valid until 2019-06-14 09:42:30)
2019-06-13 09:42:30 [main] DEBUG i.g.bonigarcia.wdm.WebDriverManager.manage(530) - Driver chromedriver 75.0.3770.8 found in cache
2019-06-13 09:42:30 [main] INFO i.g.bonigarcia.wdm.WebDriverManager.exportDriver(1050) - Exporting webdriver.chrome.driver as C:\Users\boni\.m2\repository\webdriver\chromedriver\win32\75.0.3770.8\chromedriver.exe -->
**WebDriverManager traces**: <!-- Copy the WebDriverManager traces here. This information is very important to analyze your issue, so please do not skip this part. Find more info about how to get the WebDriverManager traces here: https://bonigarcia.dev/webdrivermanager/#troubleshooting -->
```
```

**Error log**: <!-- Copy the Java error trace (if any) here. -->
```
```

0 comments on commit 67b22b6

Please sign in to comment.