All Questions
22,511,114
questions
0
votes
0
answers
2
views
How to edit the xml file in the xlsx file with python
I want to edit the xml file in the xlsx file of the Microsoft Visio vsdx file.
I want to implement using only zipfile library and xml library without using library like Openpyxl
I was able to read and ...
0
votes
0
answers
6
views
i wish upload video but selenium don't find the element
this is my code and i tried with id,cs selector already.
driver = webdriver.Chrome(chromeDriverPath, options=chromeOptions)
driver.get('https://www.tiktok.com/upload/?lang=en')
time.sleep(2)
action = ...
0
votes
0
answers
4
views
Code printing all contents of txt file instead of specific line
I have the code written below and the goal of the program is to let the user list all cars in a list and then ask for specific details on just one specific car via input. However, when the user inputs ...
0
votes
1
answer
3
views
Is there a way to access test case and test suite details in Cypress?
I am trying to make a JSON file to store the details of Cypress Tests, but I don't know how to access them.
The details I need:
1- Test case (it block) title
2- Test suite (describe block) title
3- ...
0
votes
0
answers
4
views
PHP RecursiveIteratorIterator get value key in endchildren
Help me how to use this function
function endChildren() {
echo "Update";
}
hope : update.php?dataId=123
how i do it, thanks
0
votes
0
answers
4
views
How to upload file using Axios to NestJS (multer)?
I am using Axios and try to upload a file to NestJS. But I can't.
Please help me fix this problem? T.T
In my NestJS server, I'm using multer to handle the incoming file.
For example:
@Controller('...
0
votes
0
answers
4
views
Transforming JSON template based on JSON values posted into API
I have got a requirement of building an azure function which transforms data in our COSMOS DB based on the value posted by a calling service.
So consider this JSON template
{
"...
0
votes
0
answers
3
views
is it possible to mark the disk used only by current app using java
I want to store a license information on the disk, now I am facing a problem that when the user reinstall the operation system and rollback the system time. The license could be reused, the time check ...
0
votes
0
answers
3
views
how to validate multiple selections on a select element in playwright nodejs
I'm having a hard time getting playwright to validate multiple selections in a multiple select element.
For example, say I have the following multiple select:
<select id="colors" name=&...
0
votes
0
answers
9
views
How do I bring the entry box closer to the names in html?
I am trying to bring the entry fields closer to the names; it looks bit far. wanted to see if anybody can suggest. this is how it looks now:
<div id="container">
<h3>Add Student</...
0
votes
0
answers
5
views
How to display the shadow of Material-style in Android native UI in Unity
In my case, I had an aar file in Unity that open Android's native Material-style UI.
But UI looks different.
In Android Studio Native UI Pircure
Android Studio Native UI Pircure
In Unity Android ...
0
votes
0
answers
4
views
Excel;VBA Array Loading Time
Below is a code I use to fill an array with items, the array is "public declared"
lastrow = DataBase.Range("a3").End(xlDown).row
lastcolum = DataBase.Range("a1").End(...
-1
votes
0
answers
9
views
Vue.js Front-end Issue
Front-end with Vue configuration report errors when loading png images as blow, and the webpack.config.js has been configured.
ERROR in ./src/assets/image/background.png (./node_modules/css-loader/...
0
votes
0
answers
3
views
Excel VBA Format Number as Accounting
Workbook contains several sheets of data which are added up in a macro and transferred to another sheet. Ranges on the totals sheet are originally formatted as "Accounting". But when the ...
0
votes
0
answers
9
views
Unable to delete selected items on click event from iteration of items
I have the saved data of iteration like..
.component.ts
public saveHealthyHabits() {
let isCategoryExist = false;
let categoryDetails = {
category: this.clinicalNoteForm.controls....