Posts by edufgimenez • 144 points
10 posts
-
0
votes1
answer65
viewsA: How to capture data-tooltip using Selenium in Python
I’m new to python, but from what I understand it’s more or less your idea ? Any questions with the code just ask, I left a while in the code so you can test it by going through the sizes typed in…
-
1
votes1
answer317
viewsA: Webscrap with Selenium - How to select content from a drop-down menu item with quotes in id
Your problem is occurring because all the information you are trying to select is within a frame, try as follows: from selenium.webdriver.support.ui import Select from selenium import webdriver from…
-
0
votes1
answer262
viewsA: Selecting two options in the drop down menu with Selenium + Python does not work
Good afternoon, I’m a python beginner and tried several ways to use the select option but I did not succeed because he insists that the button is not visible or can not interact with it, but with…
-
1
votes1
answer46
viewsQ: Make each clicked word automatically copied
Good morning, I understand very little javascript but I would like to create a script for tampermonkey where every word I click inside the desired element is copied, for example <html>…
-
-2
votes1
answer74
viewsQ: Print elements of a regex in sequence in python
Good afternoon guys, I am new in python and I am learning a few with this I would like to ask help from you, I have the following source code taken from a site: <div class='numerando'>1 -…
-
0
votes1
answer198
viewsA: Perl - Pass JSON data to variable and compare with IF
Problem solved using the following function: use utf8; use JSON::XS; my $name = "nome1™"; my $var1 = decode_json $utf8_encoded_json_text; # Compare with name in $name if( defined…
-
0
votes1
answer198
viewsQ: Perl - Pass JSON data to variable and compare with IF
Good morning, I have a request that I make in an API using GET (LWP::Useragent), the data is returned in a JSON, in JSON are returned up to two results at most as follows :…
-
1
votes1
answer64
viewsQ: Taking data from one Json and saving in another [Perl]
Good evening, I would like to know if there is a way to take data from one json and save it to another automatically without having to treat json as "text" (regex) in this case, I have already used…
-
1
votes1
answer141
viewsA: Perl: Find a line in a txt by matching typed words?
Problem solved with the following function : $nome =~ s/\s+/.*/g; what turns "Bayonet case" into ( "Bayonet. *case". ). Thank you Hernan.
-
5
votes1
answer141
viewsQ: Perl: Find a line in a txt by matching typed words?
Good afternoon, I have a notepad with several lines typed as for example: ★ Bayonet ★ Bayonet | Autotronic (Battle-Scarred) ★ Bayonet | Blue Steel (Minimal Wear) ★ Bayonet | Case Hardened…