Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
73 views

nodejs: 24.7 jsdom: 26.1.0 Basically, I want to create a selector, that would exclude nested elements - it should find only elements at the first level of nesting. I have this: it('Test selector non-...
Łukasz Zaroda's user avatar
3 votes
1 answer
88 views

I have a table header element: <th><input type="image" src="../../..//images/icons/cell_state_header_icon.png" onclick="javascript:__doPostBack('ctl00$left_pane$...
robm's user avatar
  • 1,217
0 votes
0 answers
33 views

I am trying to create a selector. I can 't find here https://docs.solace.com/API-Developer-Online-Ref-Documentation/swagger-ui/software-broker/config/index.html#/ how could I add a selector to a queue....
João Reis's user avatar
0 votes
1 answer
32 views

In the Z3 SMT solver, consider a datatype of the following form, where the 'time' selector is shared between two alternatives in a datatype (the two selector functions extracting the time have the ...
Klaus Havelund's user avatar
0 votes
3 answers
81 views

I am working with React and CSS. I wanted to set "background-color":"yellow" on selector 2 (tr#selector2), if selector 1 (div.selector1) is having "show" class: div....
sunil's user avatar
  • 163
0 votes
1 answer
64 views

li:has(>label) { background: #0c0; } li~li:has(>label) { border: 4px solid #c0c; } <ul tabindex="-1"> <li><input type="radio"/ name="r6a" id="r61a" value="6....
rhavin's user avatar
  • 1,804
0 votes
1 answer
97 views

I have to design a server with 3 main thread pools in order to read the data, process them and output the results to the client. I code like this but it always notice this kind of bug: java.io....
allmight's user avatar
-2 votes
1 answer
81 views

DOM snippet ul.this>li>ul ->match ul.this>li>div>ul ->match ul.this>li>div>div>ul ...
rhavin's user avatar
  • 1,804
0 votes
0 answers
51 views

Have a entity collection and subscribed in the component.entity collection will be updating frequently by websocket message. In the component item on the list can be selected by check box.Whenever ...
Aneesh mattannur's user avatar
0 votes
1 answer
42 views

The timer label doesn't show up after I checked the countdown, here's the HTML structure and the CSS: details { display: flex; /* Use flexbox layout */ flex-direction: column; /* Stack ...
Dzadafa's user avatar
  • 25
0 votes
1 answer
48 views

I have a situation where I need to write urls with and without selectors seperately. for example the URI /feeds/mydata.json should go to /content/feeds/mydata/app.json the URI /feeds/mydata.sale.json ...
Vishal--JAVA--CQ's user avatar
0 votes
1 answer
317 views

When trying to construct a list from a selector, I use the following code: tgb.selector(value="{countries}", lov="{all_countries}", multiple=True,dropdown=True) where 'countries' ...
Alan Jones's user avatar
0 votes
2 answers
471 views

As the xpath plugin is deprecated in cypress. It is becoming difficult to find the locator without xpath in angular based web applications. Has anyone found some alternative to xpath plugin on ...
Balaji R's user avatar
0 votes
0 answers
39 views

I'm new to Java NIO. Here is a toy tcp server I wrote. The problem is that a readable selectionKey is always available in the selectionKeys of the selector even after I remove it from the selectedKeys....
Ethan Tan's user avatar
0 votes
0 answers
37 views

I get the error in console "The selector "app-gif" did not match any elements" Any ideas what should i change or do? This is gif.component.ts // gif.component.ts import { Component,...
beqa's user avatar
  • 133
0 votes
1 answer
2k views

Using Playwright written with C# I have a table with various columns and rows. Each row has a unique name and on the same row there are some buttons. I am only interested in the delete/remove button ...
Mark's user avatar
  • 35
0 votes
1 answer
222 views

Note: Not a web developer, just an IT admin asked to do things out-of-scope I'm building a Yodeck web app script to log into an SSRS site. Their tool allows 'selectors' to be used to populate input ...
Louis Gillette's user avatar
0 votes
1 answer
49 views

If I have this HTML <svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> <g id="repeat"> <path fill="currentColor" d="...
Andrew Foulds's user avatar
0 votes
0 answers
48 views

I'm currently implementing a server response handler using the selector module in Python. For sending requests to multiple servers and handling I/O operations, I'm leveraging asyncio. In my main loop, ...
Ariel Gliksberg's user avatar
1 vote
1 answer
71 views

The Swift equivalent of Objective-C's @selector() expression, is #selector(). In Xcode, the Objective-C, @selector() expression will offer autocompletions for all available selectors and the selector ...
F. S.'s user avatar
  • 13
0 votes
1 answer
162 views

inside main file code import requests import selectorlib URL = 'http://programmer100.pythonanywhere.com/tours/' HEADERS = { 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) ...
Via4eslav Tka4enko's user avatar
0 votes
1 answer
48 views

I have the code that check if there is element which has the specific text is displayed under the container. It worked well, while I used full xpath, but after we changed selector (it still get the ...
László Fehér's user avatar
0 votes
1 answer
31 views

I'm working on an Angular project using ngrx, where I have two states—one for users and another for projects. In the project state, each project has an Author and an Editor. The user state contains ...
Hamid's user avatar
  • 126
0 votes
1 answer
93 views

I've written bits of JS that select elements within a bootstrap modal. To ensure that said JS only selects elements that belong to the modal itself (i.e within its header/footer), but excludes any ...
Virus721's user avatar
  • 8,413
1 vote
1 answer
142 views

So I want to scrape all the Chiropractors from this website https://chiropractic.ca/find-a-chiro/alberta/ I use a tool called Webscraper, which is very good, allow me to do pagination and further ...
Homework Aid's user avatar
0 votes
0 answers
20 views

i'm trying to target a class when i'm hovering another class. I want to taget .colonne-gauche when hovering .behance my html <body> <article> <h1 class="test">lorem<a ...
Geoffrey Menissier's user avatar
0 votes
1 answer
43 views

I am new to TestCafe. Below is example HTML code and when I create selector with id it is only returning "Current Timestamp:" and I need the timestamp for current time. Page object file: ...
Ivonne Perez's user avatar
0 votes
3 answers
75 views

const startButton = document.getElementById("start"); const allButtons = document.querySelectorAll('button-56'); const logoButton = document.getElementsByClassName("Logo"); addGlobalEventListener("...
Michael Anderson's user avatar
0 votes
0 answers
114 views

Is selector in Typst able to select contents between headings? I have three headings, eg: Test1, Test2 and Test3, how to extract/query the contents between these headings? The result is 10 words ...
ohmycloudy's user avatar
0 votes
1 answer
37 views

Trying to have jQuery access both the event.target and another element on click but receive the error: Error: Syntax error, unrecognized expression: [object HTMLButtonElement],#element2 Selector code:...
Kevin Lindmark's user avatar
0 votes
0 answers
22 views

I used css+javascript to customise the style of an audio element (audio tag). <script type="text/javascript"> audio = document.querySelector('audio'); etc... This searches and ...
Riccardo Vescovo's user avatar
0 votes
1 answer
25 views

I have a simple directive which selector is an img. @Directive( { selector: 'img' } ) export class ImageDirective { ... } How can I add boolean parameter to this directive? I tried it with @Input()...
L. Kvri's user avatar
  • 1,752
-2 votes
2 answers
79 views

Which is the correct selector to select all li items inside .nav class ? Have tried both and they seem to both work. Want to know what the correct way of writing the selector Trying to style all list ...
Kendeas Harris's user avatar
0 votes
1 answer
199 views

I simply added a class ".script_class" to my script tag to find it. Then my JMeter settings are: Name of created variable: content CSS Selector expression: .script_class Default Value: ...
G Knucklez's user avatar
0 votes
1 answer
55 views

Hello I've got a little problem and I need to override default selector timeout coming from my .testcaferc.json file which has some properties that look like this => "selectorTimeout": ...
newnick988888's user avatar
-2 votes
1 answer
62 views

i am making a web scraping course on datacamp :D in the session it self we are scraping datacamp websites to get courses names and urls however, i am trying to reach the same result on pycharm on my ...
mohamed sultan's user avatar
0 votes
1 answer
670 views

I need to configure my UITextView such that it only performs a select set of actions via the Edit menu. I tried to override the 'canPerformAction(_ action: Selector, withSender sender: Any?)' function ...
Sundara Aadithyan's user avatar
3 votes
1 answer
79 views

(I'm aware there's a myriad of CSS selector questions already, yet I couldn't find an answer to this one, unfortunately; so please bear with me.) I have HTML with the following properties: Some nodes ...
Philipp Koch's user avatar
2 votes
0 answers
72 views

I am using a gnu radio flowgraph to attempt to select the appropriate Selector Block output as explained below. The following error occurs when I run the flowgraph: Index Error: output_index must be &...
Jim's user avatar
  • 39
0 votes
2 answers
70 views

I have a dropdown which gets populated with card numbers, the way our front end is built the last four of the card end up in the data-cy attr for each card entry in the drop down, looking like "...
gopencyprep's user avatar
0 votes
1 answer
42 views

Child #1 Component: selector: 'app-home' child #2 component: selector: 'app-plans' child #1 html: <p>child 1 here</p> child #2 html: <p>Child 2 here</p> app.component....
victor's user avatar
  • 39
3 votes
2 answers
82 views

Why do Objective-C APIs like NotificationCenter.addObserver or UIButton.addTarget get imported into Swift with a an observer of type Any, instead of AnyObject? Is there any reason for that? Is it even ...
Pyrettt Pyrettt's user avatar
0 votes
2 answers
52 views

We have a JQUERY challenge in that we need to find checkboxes in a JQuery SELECTOR by matching on part of a string that is in the OnClick Attribute. If we were matching on a NAME or ID, it would be ...
Allan Spielman's user avatar
1 vote
1 answer
50 views

I have a dict with selectors which I use to get data: for key, selector in selectors.items(): data[key] = response.css(selector).get().strip() One of the selectors is span::text, but sometimes ...
bur's user avatar
  • 899
0 votes
3 answers
566 views

In my flow => I have switched to another window and cannot find out the xPath to click I have the following html => I tried some ways to click a tag [SerName] by xPath and Css Selector but they ...
TaraNG's user avatar
  • 17
0 votes
1 answer
52 views

Is it possible to get the data attribute value during an on change event? jQuery(document).ready(function($) { $('.mystatus').on("change", function() { var value = this.value; ...
shanebp's user avatar
  • 1,946
-3 votes
1 answer
60 views

I am building a program that would simplify coding discord bots. I wanted to add inline functions, but seems like my regex selector is not the perfect match. My program loops through every inline ...
disitific's user avatar
0 votes
1 answer
25 views

I have been trying to work on Shapelets Dataapp to display information for a presentation. I tried to work on a selector that would display the data depending on the zip code. Everything is working ...
Willam Singhs's user avatar
0 votes
0 answers
74 views

I'm trying to get the text of this selector (the upload date of a video in the search result): uploadedago: #metadata-line > span:nth-child(4) the text is this: "uploaded x time ago". ...
user avatar
0 votes
2 answers
101 views

I have multiple InputStream, and I want to read without polling. My actual code: BufferedReader p = new BufferedReader(new InputStreamReader(k.getInputStream())); BufferedReader p2 = new ...
SempriGno's user avatar

1
2 3 4 5
78