All Questions
Tagged with automation python-3.x
542 questions
-2
votes
1
answer
138
views
How can I efficiently set up Python virtual environments for 200+ student submissions?
I am working on a grading automation tool for programming assignments. Each student submission is run in its own isolated virtual environment (venv), and dependencies are installed from a requirements....
-1
votes
0
answers
18
views
Netmiko Python Script not Running in Ubuntu (VirtualBox): No output, ModuleNotFoundError, and environment issues
I'm trying to run a Python script that uses Netmiko to SSH into a Cisco router from an Ubuntu VM running in Oracle VirtualBox. The goal is to automate router configuration using ConnectHandler. ...
0
votes
0
answers
66
views
How to edit and combine video clips based on CSV timestamps using Python MoviePy?
I need help automating a video editing using Python and MoviePy. I have a CSV file with series name, episode number, and start time (in seconds). My main goal is to cut each episode starting at the ...
1
vote
0
answers
59
views
CheckBox pywinauto how to click inside ListViewWrapper
I have a table object with one row in it. I want to click on the CheckBox inside this line, but all I could do was click on the line itself, but not on the CheckBox.
Code:
app = Application().connect(...
0
votes
0
answers
30
views
Python script using Tableau_api_lib package changing the user quota to "server limit" when trying to changing the storage_quota of a site
I have written a python script using Tableau_api_lib package.
#Importing tableau connection package
from tableau_api_lib import TableauServerConnection
#configuring our environment and providing PAT ...
0
votes
1
answer
35
views
How to access advanced options window opened after clicking advanced button in indexing options using pywinauto?
I am not able to access advanced options window opened after clicking advanced button, I am not able to access the window or any control identifiers
from pywinauto import Application, findwindows, ...
0
votes
0
answers
40
views
Selenium chromedriver can't open url from database
For some reason the chromedriver cannot retrieve the data from a database. Instead you get the default "data:," webpage in the chrome addressfield.
The chromedriver is able to retrieve data ...
0
votes
0
answers
112
views
FastAPI Email Sending Fails with SMTPConnectResponseError: Service Not Available
I'm trying to send an email to users after they sign up using FastAPI and FastAPI-Mail. However, I'm encountering an error indicating that the email service is not available. I've tried using both ...
1
vote
0
answers
93
views
Why Tox won't work in pycharm run/debug but works in terminal
I have an issue with pycharm and tox. When im running tox thru pycharm terminal by 'tox', all tests are start running but if i want to use ctrl+shift+R(run button in pycharm), i have an error:
...
0
votes
1
answer
322
views
(4096, 'Microsoft Outlook', 'The operation failed.', None, 0, -2147287037) error when saving an email to my local machine
I am trying to download some emails from my outlook folder to my local machine as .msg files using the following code.
messages = source_folder.Items
for message in messages:
# Estimate the size ...
0
votes
0
answers
34
views
interacting with chrome without selenium
here is what i want to do
i want to create a python script that search for a keywoard in youtube ' i'm not using selenium or a webdriver ' then i want the code to scroll until it finds my video which ...
0
votes
0
answers
671
views
How to set fixed column width in tabulate module of python
How to set fixed column width in tabulate module of python
eg:
table_header = ['CURRENT TIME', 'NAMESPACE', 'CPU REQUESTS', 'CPU LIMITS', 'MEMORY REQUESTS', 'MEMORY LIMITS']
with open("abc.txt&...
0
votes
0
answers
135
views
How to automate password prompt coming from Shell script B ,using Shell script A? [duplicate]
Im running a Shell script A which executes another Shell script B which asks for password from user. How to automate password input using Shell script A?
Tried below
/usr/bin/expect <<EOD
ssh -o ...
0
votes
0
answers
532
views
Selenium ERROR: ERROR:cert_issuer_source_aia.cc(34)] Error parsing cert retrieved from AIA (as DER):
So I just starting using the Selenium Framework for browser automation. My remote automation is working, however I keep getting the following error:
[2944:20700:1219/211513.232:ERROR:...
0
votes
0
answers
82
views
Selenium: Drag and Drop functionality with pyautoGUI working on Chrome
I study a lot of thing regarding python automation, reached a point that i proposed to make scripts to test https://the-internet.herokuapp.com/ using selenium and python. At the Drag and Drop section ...