3,891 questions
0 votes
1 answer
73 views
Selector excluding nested values
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-...
3 votes
1 answer
88 views
Using SeleniumBase to wait for an image to become visible
I have a table header element: <th><input type="image" src="../../..//images/icons/cell_state_header_icon.png" onclick="javascript:__doPostBack('ctl00$left_pane$...
0 votes
0 answers
36 views
Troubling setting selector using the SEMP v2
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....
0 votes
1 answer
32 views
Selector functions in datatypes in the Z3 SMT solver - do they have to be unique?
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 ...
0 votes
3 answers
81 views
How to set CSS attributes for one element on the basis of other element's class
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....
0 votes
1 answer
64 views
Why is this css sibling selector not selecting all the siblings?
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....
0 votes
1 answer
97 views
Cannot read the object while using thread pools to process
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....
-2 votes
1 answer
81 views
Can CSS have an arbitrary number of elements inside a pseudo-selector?
DOM snippet ul.this>li>ul ->match ul.this>li>div>ul ->match ul.this>li>div>div>ul ...
0 votes
0 answers
51 views
NGRX How to change the store without changing the refference, so it shouldnt trigger custom selector method
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 ...
0 votes
1 answer
42 views
CSS Sibling Combinator Not Showing Label on Checkbox Check Within <details> Element [duplicate]
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 ...
0 votes
1 answer
48 views
ModRewrite rule - Skip if the selector is not present
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 ...
0 votes
1 answer
317 views
Taipy selector causes an error, how can I get around this?
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' ...
0 votes
2 answers
471 views
xpath plugin alternative in cypress for "locator or selector" in angular applications
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 ...
0 votes
0 answers
39 views
Java NIO readable selectionKey always exist in selectedKeys
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....
0 votes
0 answers
37 views
How to fix The selector "app-gif" did not match any elements
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,...