- Download Charles
- Download Genymotion Desktop 3.2.1
- How to set up Charles Proxy for mobile and web apps?
- How To Set Up Charles Proxy on macOS
- Install Charles Root Certificate on Mac
- Configure Charles Root certificate on Mac
- Man in The Middle Attack and SSLPinning | Ethical Hacking | Charles | iOS | Swift | Xcode
- How to Proxy on Localhost
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#swipe to top | |
def swipe_to_top(element, duration) | |
elem = element | |
x = elem.location.x | |
y = elem.location.y | |
Appium::TouchAction.swipe(start_x: x, start_y: y, duration: duration) | |
end | |
#when you need to just horizontally swipe carousel of elements or similar (when 2 elements are present) | |
def swipe_horizontally(element_s, element_e, duration) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
#In order to execute the shell file commands: | |
#sh jenv.sh | |
#chmod +x jenv.sh | |
#./jenv.sh | |
echo " ______ _ _ _ _______ __ __ _ _ " | |
echo " | ____| | | | (_) |__ __| | \/ (_) | |" | |
echo " | |__ | |__ _ __ __ _| |__ _ _ __ ___ | | ___ _ __| \ / |_ _ __ __ _| |" |
Issue: "Opening Robot Framework log failed"
- Verify that you have JavaScript enabled in your browser.
- Make sure you are using a modern enough browser. Firefox 3.5, IE 8, or equivalent is required, newer browsers are recommended.
- Check are there messages in your browser's JavaScript error log. Please report the problem if you suspect you have encountered a bug.
Explanation: Due to Content Security Policy (https://content-security-policy.com/).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Clone the repo | |
git clone https://github.com/imartinez/privateGPT | |
cd privateGPT | |
# Install Python 3.11 | |
pyenv install 3.11 | |
pyenv local 3.11 | |
# Install dependencies | |
poetry install --with ui,local |