10 examples of 'javascript select tag by css selector' in JavaScript

Every line of 'javascript select tag by css selector' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
347async findAllByCssSelector(selector, timeout = defaultFindTimeout) {
348 this.debug('in findAllByCssSelector: ' + selector);
349 const remote = this.remote.setFindTimeout(timeout);
350 let elements = await remote.findAllByCssSelector(selector);
351 this.remote.setFindTimeout(defaultFindTimeout);
352 if (!elements) elements = [];
353 this.debug(`Found ${elements.length} for selector ${selector}`);
354 return elements;
355}
52select(selector) {
53 return this.shadowRoot ? this.shadowRoot.querySelector(selector) : this.querySelector(selector);
54}
15function get(selector) { return document.querySelector(selector) || document.getElementById(selector) }
247function elementByCssExists(selector, delay = 2000) {
248 return driver.waitForElementByCss(selector, delay)
249 .should.eventually.exist;
250}
25function findElement(selectors) {
26 let currentElement = document;
27 for (let i = 0; i < selectors.length; i++) {
28 if (i > 0) {
29 currentElement = currentElement.shadowRoot;
30 }
31
32 currentElement = currentElement.querySelector(selectors[i]);
33
34 if (!currentElement) {
35 break;
36 }
37 }
38
39 return currentElement;
40}
10function toggle_tag_select(tag_id, hidden_id) {
11 a = document.getElementById(tag_id);
12 if (a.getAttribute('class') == 'false_tag') {set_to = true} else {set_to = false};
13 a.setAttribute('class', set_to + '_tag');
14 hidden = document.getElementById(hidden_id);
15 hidden.setAttribute('value', set_to);
16}
82find (css) {
83 return this._div.querySelector(css)
84}
143function getSelectorValue(selectorId) {
144 var resource = document.getElementById(selectorId);
145 log("selector "+resource.name);
146 var myIndex = resource.selectedIndex;
147 log("index: " +myIndex);
148 log(resource.options);
149 log(resource.options[myIndex].value);
150 return resource.options[myIndex].value
151}
162$(selector) {
163
164 return this.evaluate(
165 selector => document.querySelector( selector ), selector
166 );
167}
34function selector(element) {
35 var target = element;
36
37 if (typeof target === 'string') {
38 target = document.querySelector(target);
39 }
40
41 return target;
42}

Related snippets