Posts by Tooc • 135 points
11 posts
-
0
votes0
answers51
viewsQ: Select - Dropdown menu option not selected - Python Selenium
Hello, I’m doing a Python project using Selenium. When you select to choose an option from a dropdown menu, it is not selected. I’ve always done it this way and it’s always worked and I wonder if…
-
0
votes1
answer46
viewsQ: How to reach a dropdown element through partial text in Selenium - python
How can I select an element from a dropdown through part of its name? I want to select an option based on values taken from a database, but these values do not have the full name of the elements of…
-
3
votes2
answers311
viewsQ: How to use re.split() to pick only the words of a text, ignoring numbers and punctuation marks
I am given the following sentence:: texto = """ Em 2020 observamos, e catalogamos (com fotografias), os barcos que chegaram ao Porto! Até breve. """ for p in gerarPalavras(texto): print(p) I created…
-
-1
votes1
answer57
viewsQ: How to replace digits with "!" in SQL (postgresql)
Good Afternoon, I am trying in an output to exchange all digits in the address column for a '!'. I tried the following solution among others, but for some reason I’m not getting what I want. select…
-
0
votes1
answer50
viewsQ: Select from a column argument with multiple arguments
Good morning, I came across a question I can’t resolve. I have the following code: select id, name, characteristics as characteristic from monsters order by id Return me the following table: id name…
-
1
votes0
answers25
viewsQ: Error in moving Intel in a Javascript array
Good Afternoon, In my code, a curious detail is happening. I have a game board and when I move my piece past the cell below any other element, this one stops. I’d like to pass it on, just giving the…
-
0
votes1
answer25
viewsQ: Replace string by image
I am making a game board and when I try to replace the blocks with pictures, it returns me a block with the image and the identification string of that block. I intended to completely replace the…
-
3
votes1
answer90
viewsQ: Moving piece, adds new game board
Good morning, I’m having a little problem drafting a board game. When I try to move a tile by returning a new frame(array of arrays), it is added to the page instead of replacing itself. I get two…
-
0
votes1
answer32
viewsQ: Typeerror: board[Row] is Undefined - Javascript
Good Afternoon, I’m asking for help for a project I’m doing in Javascript. My goal at this point is, after creating a game board, to move the pieces. I’m not making progress right now because of…
-
1
votes1
answer75
viewsQ: How to obtain items that multiple lists have in common
How to do for when there is no common item, launch warnings? List 1, 2 and 3 have different index numbers. def compabilitySorter (lista1, lista2, lista3): listCompatible=[lista1, lista2, lista3]…
-
0
votes1
answer792
viewsQ: How to remove a dropdown from within a list
Good Afternoon, I have a problem with a job that is: I have a function that needs lists to organize various elements according to predefined characteristics. My question is how to remove a dropdown…