Posts by Klayton Paiva • 11 points
2 posts
-
0
votes0
answers28
viewsQ: How to click the Instagram FOLLOW button with Selenium using python
Instagram is increasingly hindering the use of automation on your site. This code click on the first button with the text 'Follow' You can use this to find and click: from selenium import webdriver…
-
-2
votes1
answer242
viewsA: Calling PYTHON script through PHP
Use this <?php $comando = escapeshellcmd('./ficheiro_python.py'); $cmdResult = shell_exec($comando); echo $cmdResult; ?> As line "shebang" you should have the following in the python file:…