Skip to content

Commit

Permalink
[#472] DOCS: Add How to use custom profile (FAQ page)
Browse files Browse the repository at this point in the history
Add custom-user-profile-howto.md
Add index.md for faq section

Update links to courses in social links block (footer)
Remove link to book from social links
Correct relative links to images examples in How to write docs
Add two redirects from caps-lockd old URLs: CHANGELOG and LICENSE
  (!!! do not check them on Windows docs server)
Enable "Copy to clipboard" button to code blocks in theme
Correct a  typo in README
Update 'mkdocs-material' from 9.0.15 to 9.1.1
  • Loading branch information
hotenov committed Mar 7, 2023
1 parent 30dd46d commit 04c9934
Show file tree
Hide file tree
Showing 8 changed files with 402 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ from selene.support.shared import browser, config
# ... do the same with browser.*
```

So you don't need to create you driver instance manually. It will be created for you automatically.
So you don't need to create your driver instance manually. It will be created for you automatically.

Yet, if you need some special case, like working with remote driver, etc., you can still use shared browser object, while providing driver to it through:

Expand Down
4 changes: 2 additions & 2 deletions docs/contribution/how-to-organize-docs-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Selene has following file layout:

- Can be out-dated here, please look into `docs` folder
or ask project owner where to put new document.
- Some filenames are not real, for demonstration purpose only).
- Some filenames are not real (for demonstration purpose only).
<!-- markdownlint-enable MD046 -->

```plain
Expand All @@ -125,7 +125,7 @@ Selene has following file layout:
├── 📁 assets/
└── 🎨 chrome-driver-window.png
├── 📄 index.md
├── 📄 q-tbd-1.howto.md
├── 📄 q-tbd-1-howto.md
└── 📄 custom-chrome-profile-howto.md
├── 📁 learn-advanced/
├── 📁 assets/
Expand Down
4 changes: 2 additions & 2 deletions docs/contribution/how-to-write-docs-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ and use relative URL to it (see example below).
Here's our logo (hover to see the title text):

Inline-style:
![selene logo](https://yashaka.github.io/selene/assets/images/apple-touch-icon.png "Selene logo")
![selene logo](../assets/images/logo-icon.png "Selene logo")

Reference-style:
![alt text][logo]

[logo]: https://yashaka.github.io/selene/assets/images/apple-touch-icon.png "Logo Title Text 2"
[logo]: ../assets/images/logo-icon.png "Logo Title Text 2"
<!-- markdownlint-enable MD046 -->

### Code and Syntax Highlighting
Expand Down
Loading

0 comments on commit 04c9934

Please sign in to comment.