Selenium remove focus from element. Method 5: Remove Element Using .

Selenium remove focus from element. focus(); } but it didn't work.
Selenium remove focus from element I want to remove :focus when the mouse hovers on this link and th Apr 15, 2010 · Answer from oligofren - the method isDisplayedInViewport works. TAB)` method or JavaScript Executor to set the focus explicitly. To focus on an element in Selenium WebDriver, you can use the `WebElement` interface's `sendKeys(Keys. tag_name print element. I finally solved the problem. Using it can verify that the javascript fired and a specific element has focus. You can do something like . find_element_by_class_name('classname') driver. See examples, code snippets, and solutions for different scenarios. Using java script Jul 23, 2015 · For manipulation on DOM elements always try to use Directives. Oct 24, 2024 · Strategy 1: Using Robust Locators for Dynamic Elements. title ('Second Window') b2 = Button (second, text = 'Goto First Window') b2. Mar 11, 2022 · If the div has the span class, I want to maintain it on the page's code, but if it doesn't, I want to delete it, maybe using Selenium. Apr 4, 2013 · I am trying to move the cursor to <a \>, but the problem is that the element is not rendered until i move mouse pointer physically on selected image. querySelector('a. The JavaScript co Jun 18, 2015 · How to set focus on element on moving the mouse over it in Selenium WebDriver using Java? Hot Network Questions What is the theological implication of John the Baptist being 'great before the Lord' (Luke 1:15a) yet 'the least in the Kingdom of God' (Luke 7:28b) May 3, 2016 · There is another topic that covers this issue: Test if an element is focused using Selenium Webdriver Basically the code will be element. I have the problem that there is a division of popup in the webpage source which is disabling all other divisions. dev Jul 31, 2019 · To ensure * you get a change event, consider following with a call to {@link #sendKeys(CharSequence)} * with the tab key. The first step in dealing with dynamic elements is using robust locators. Apr 7, 2021 · How can I delete an element in Selenium using Python - We can delete an element in Selenium webdriver using Python with the help of JavaScript Executor. Helped me. WebElement origin = driver. active_element Dec 4, 2021 · Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. Can you check this out? Jul 31, 2019 · old selenium behaviour (at least till ~ 3. Jul 31, 2024 · Web Driver is an essential component of Selenium which allows us to interact with the web browsers programmatically. Use the blur() method to remove the focus from an element, e. perform() Please note that this doesn't move your physical cursor, but only invisible cursor of Selenium. I would try Selenium 2. WebElement elem = driver. This program captures the screenshot of the whole page and crop the element based on its location. In this case, you'd probably want to send blank key to the tooltip as soon as it appears. Remove focus from a text field: The blur() method removes focus from an element. element. – Nov 28, 2010 · Set focus to another widget to remove focus from the target widget is a good idea. pack () second. On a Windows Phone 7 application, I've been using the Focus method to unset the Focus of a Textbox. You might be running into a different issue, like a selector returning a different element, or trying to click it before it becomes visible. focus_force) b2. Asking for help, clarification, or responding to other answers. Type command causes additional postback if textbox contains data. The coordinates property seemed to be the best value to use. It has to work on firefox 2 as well as more modern browsers. move_to_element(element). config (command = second. What you can try is, click on the dropdown (down arrow image) and once you see the options, right click on one of them and choose inspect element. Any ideas? I've tried to do click by x,y but it doesn't effecti Feb 26, 2020 · I'm looking for a generic way to get the next element within Selenium. By is a class used in selenium that provides a mechanism through which we can easily locate an element on a web page. k here it is, if the message of the screen is displayed as a tool tip and the styling is taken care by mouseover event selenium. focus_force) b1. Jul 26, 2016 · In general if you want to remove an attribute use the JavaScript removeAttribute method rather than trying to use setAttribute. Jquery has a . See Also: Element focus() Method. HTMLElementObject. The reason for that is that previously selenium did not do any "events firing May 20, 2017 · Find an element that contains the disappearing element. id('pat')); elem. It has the feature of injecting JavaScript into the webpage and changing the DOM with the help execute_script method. Using CSS Pseudo Class. Jan 15, 2019 · you need to send the word Delhi to a element then wait until the list appear next click the li contain it. I'm wanting to check when when a form submission is attempted with a mandatory field missed, focus is moved to the empty field. find_elements_by_tag_name('img'): print element. The focus on the search field is by default We can remove the focus from the search field by using the ‘blur’ method. Selenium Documentation Source Mar 13, 2014 · function setfocus() { document. 40. Syntax. Feb 24, 2016 · In Selenium 2. It will be the first data table under the stock time-series graph. Aug 17, 2017 · I don't know why Actions class is not focusing the element. But if you put android:focusableInTouchMode the focus traversal ends up on its parent. find_element :css, 'input:focus' sleep(3) element. But even after the blur event is triggered, the focus stays on that v-select. Below is my code: Dec 12, 2012 · Here is a Python 3 version using Selenium webdriver and Pillow. Here you is your code : Feb 20, 2020 · return element. common. sendKeys remove focus from the textbox. Note this way of doing it requires an id on the element; however it can be generalized to remove elements of a certain class as well by changing getElementById to getElementsByClassName. Nov 20, 2018 · Stitching the comment by Andersson, and the two answers provided by QHarr, and pguardiario. I tried to get all windowHandles and see if I could switch, but even after the new tab has opened, there is only 1 windowHandle. JavascriptExecutor. Both the element. There is always something with logical focus in your program. execute_script(""" var element = arguments[0]; element. But how can one delete that found element from the page's source code? Edit Sep 1, 2014 · After looking for examples of how set focus elements with angular, I saw that most of them use some variable to watch for then set focus, and most of them use one different variable for each field they want to set focus. activeElement()); It seems that I don't have to set the focus to any other elements. Oct 17, 2016 · These dynamic elements work in such a way that, JavaScript is used to dynamically create elements. Dec 12, 2019 · I am using robot framework+python+selenium to create an automation framework. For testing purpose, i want understand if i can 'modify' the web page i load 'in local (so client side)' on my webBrowser, using Selenium automation. mouseOver(locator) and then [ Thread. Elements still exist in the DOM. selectByVisibleText Feb 28, 2018 · With selenium, I am now able to find the table row, click on the link, and the new tab opens. activeElement()); In Python, return self. send_keys "Hello WebDriver!" assert_equal(element. click(); Ideally, you should induce WebDriverWait for the elementToBeClickable() while invoking the click() to set the focus as follows: Nov 28, 2015 · In order to set focus on the element you can use executeScript method as described below : JavascriptExecutor js; js. focus()"); Once the focus is set you can easily use send_keys provided by webdriver api. How to do this? Please help as I need to fix this issue immediately. webdriver. Here you is your code : Aug 17, 2017 · I don't know why Actions class is not focusing the element. In many cases, element with text has multiple parent elements without any text,and the different font set than the text displayed. pack Sep 3, 2024 · Interacting with Common Elements in Selenium. Jan 11, 2019 · I am not sure if I got the right element selector for Search from the attached html file, or it is just some focus issue. webdriver import ActionChains actions = ActionChains(driver) actions. clear() Reset Radio button or Checkbox: Just click again the radio button or checkbox item. remove() method on the object that you want to get rid of. How can i move to the mouse to hover over <a \> to select/click? FF version 20 Selenium WebDriver version: 2. The reason being, the focus has now been removed from the search field @Grault This only clears the keyboard focus, not the logical focus (which is what fires to the GotFocus event). If this post-back fires element for the sendKeys will no longer be valid (different page) Oct 11, 2018 · Starting say that i know it's a bad practice to remove WebElement from a WebPage. element_to_be_selected(element)) Oct 26, 2024 · Basic Syntax of move_to_element() The move_to_element() method is used with ActionChains. I have to use this method to get focus on new windows sometimes because Selenium wont do it. Hot Network Questions Undead Uniforms Apr 1, 2014 · Worst case, find the closest element to the button and change the last method to move_to_element_with_offset(element,x, y) to go from the element you found to the coordinates of the button on screen. ActionChains(driver) element = driver. For accessing DOM from directive we can inject reference of our host DOM element by the ElementRef in directive constructor. get_attribute("style") Style element you will get and remove display from it. config (command = first. 0 Current code Mar 7, 2024 · Does not remove elements from DOM. S. On this website. Feb 1, 2013 · In order for the Save and Cancel buttons to be activated (not grayed out), I need to click in another text field to change focus. Feb 20, 2020 · Using either Type or Sendkeys causing post-back and removing focus from textbox where testing element for a second time on same test run. getElementById('x'). Explore our latest online courses and learn new skills at your own pace. Here’s the basic syntax: from selenium. In this case, though, you are working with a select and want to select a different element. The problem is that when the v-dialog opens, it puts the focus automatically on the first v-select, which is very annoying. My solution involves keeping track of the "previously focused" element (anywhere on the page): Feb 25, 2016 · I need to remove focus from ui-select input once the user has selected an option using mouse click and on enter start searching. Problem for me was that the text element still retained focus, but I assume this is due to some handler inside jQuery Mobile. Method 3: Modifying CSS. Mar 5, 2024 · Disable focus on a specific Element using JavaScript # Remove the focus from an Element using JavaScript. Feb 15, 2021 · You will get display value and then you can remove it. The key is to target a container within the container, all the information is contained in the class name "ui_column is-9" which is contained in the class name "review-container", hence addressing Andersson's comment of multiple mgrRspnInLine. Feb 10, 2023 · We did not have to ask playwright to focus on the search field. findElement(By. But I cannot see any way to do this using the WebDriver API. getElementById("hiddenfield"). Python + Selenium -- Can't click on the element. I am stuck at this point. Works. My problem is I'm not sure how to change the focus from one tab to another. I need to remove some elements from page after processing(from DOM model). com/automationnee Nov 19, 2018 · Try below code to remove attribute from element IJavaScriptExecutor js = (IJavaScriptExecutor)driver; js. click(); Nov 15, 2022 · Once you locate the element you can use the text property. Note: If you have better idea for elements removal from Selenium’s HTML DOM, let me know in comments below. you need to scroll the element up or down in order to make it shown on the screen the click on it. And the result is the same. activeElement(); Jan 8, 2020 · Here is an example of how to switch focus between two tkinter windows: from tkinter import Tk, Button first = Tk () second = Tk () first. Example: for element in self. blur()Github Repo- https://github. Nov 18, 2022 · #playwright #pytest #python In this video we learned about:How to remove focus from element using locator. The above solution works the other way around. Oct 12, 2022 · I have 40 Python unit tests and each of them open a Selenium driver as they are separate files and cannot share the same driver. attribute('value'),"Hello WebDriver!") Getting the focused element with jQuery: var focus = $(document. Select the focused element in Selenium. But is there any shortcut way to send keys to the element currently in focus? I'd like to be able to skip all the work of finding each element every time. Focus of the element is wrong during selenium webdriver automation. I'm familiar with webdriver but not RC, but RC should have something like send_key(element_xpath, " ") as well. 31. log I found that in fact the DIVs would get the focus (without the focus first being obtained by the TDs). Generally, invoking click() will set the focus on the desired element. 2. focus_set() and w. blur() Nov 23, 2013 · When an element is out of view with selenium and one tries to interact with it, selenium will usually scroll the element into view first implicitly. driver. blur() method, including its syntax, code examples, specifications, and browser compatibility. equals(driver. mouseOut(locator) try with Dec 18, 2014 · Shesh, I'm trying to read the font and compare with some font for all the elements on the page. elem2 = driver. It's better to wait for the window manager to give you the focus. clear(). Delete dynamic elements from HTML with Selenium and Python. g. 0, if you are using WebDriver to drive the tests in the browser, you can use the WebDriver. If the method returns, then Feb 28, 2017 · If I wanted to just remove focus from something altogether (as in the opposite of saying "Focus();" in code), how would I go about doing it? Example scenario: I'm KeyboardFocusing a button and using the onclick event, I want to just say "remove focus from this element". This could fail if there are 2 elements on top of each other, but you probably don't want that anyway. Aug 22, 2021 · I have been writing selenium scripts for a while in Java. other way to do it using below code. Sep 19, 2016 · WebElement element = wd. I don't want to use javascript executor and css selector. Python Nov 14, 2024 · Output. ui import WebDriverWait from selenium. btn. In the example I am switching to one iframe in my page and clicking on the element in that iframe, which is "worksheet0" . next() function and overloads to allow a given type so I imagine there may be a JS based solution available for Jan 15, 2021 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Feb 25, 2014 · I started with this post and ended up with this extension method. import org. In this case you are able to write simple directive. Please see my below example, it worked for me. I've done: wait=WebDriverWait(driver,10) element=driver. Apr 5, 2019 · element = @driver. – Oct 25, 2019 · First thing i'd like to point out is you are using . input. Sep 2, 2015 · I have an input field. Provides an easy way to hide elements without altering the document structure. 2. We'll also need to import by class from Selenium Web Driver. TargetLocator class to get the element in focus, in a window/frame: WebDriver driver = // initialize the driver WebElement currentElement = driver. Now what happens is that the focus is still there on select and as a result the dropdown list is opened on clicking enter. find_element_by_id('your-id') # or your another selector here action. clear() method, later while executing next Jul 29, 2018 · Based on this StackOverflow answer, you may call the JavascriptExecutor and use the . Focus(); I've used this recently and it's a decent solution. Just use the built in Select class in selenium like this: Select select = new Select(myElement); select. In this example, i want to load the 'Google' main page, and try to remove the 'Google' title, from my webBrowser. Here is the issue: I cleared a text field using webelement. openqa Jan 3, 2022 · We call executed script, which will remove the first (0-th) element of the specific class name. Setting focus to parent widget or to the root window removes focus from the target Sep 10, 2010 · The TDs in my TABLE actually each has a DIV as their sole child, and using console. Dec 29, 2019 · This usecase. When a user focuses on this field, the background of this field will change. Apr 2, 2014 · You can just give the id of your iframe instead of iframe-name. by import By from selenium. Nov 4, 2017 · How do I remove an element in selenium python. moveToElement(element). Firefox() The above commands will take the focus to the new opened window. When the link 'a' is clicked, a new tab is opened. " This will throw a debugger pause before the element disappears, which will allow you to interact with the element in a paused state. perform() This code moves the mouse pointer to hover over the specified element. 3. click(). element = driver. click() If your Firefox was in non-native selenium events mode, then this would make sense. Here are a few ways I've tried to get this to work: searchField. Sep 26, 2011 · I'm really surprised I can't find references on the internet to testing for element focus using Selenium Webdriver. Unfocus(), so the easiest work around is just to capture the mouse over event and set the focus on something else [element]. For that I have two lists selecting the elements (div and span). Still you have one alternative way to Focus on desired element and then perform click on focused element i. There are two methods for this: w. In case the view is the first EditText it seems clearFocus() clears its focus but then starts searching for a focus candidate through the view tree and then finds out the same view. The problem is that I can't find any way to switch the focus to the newly opened tab. In short, I need to remove the default focus from an inputbox on page and give it to a fragment. I've tried numerous solutions, and even managed to trigger the blur event (I had put a console log in the blur event). 0 with Firefox 27 though, with native events enabled, just to see what happens, otherwise use the JavascriptExecutor as a workaround. I encountered a very weird issue today. You have already touched upon entering input, here’s how to interact with buttons, and dropdowns: Assuming you want to click a button with the ID “submit-button” after entering the input in the search bar : Jan 15, 2015 · I want to perform a mouse click on a blank area outside a form in order to wake up the data traffic in some websites by Selenium IDE. Method 5: Remove Element Using Feb 20, 2011 · This trick works for me. 6. For example I have a following element: Jul 2, 2018 · There is a method called activeElement() in webdriver to check whether the element in question is the focussed element. title ('First Window') b1 = Button (first, text = 'Goto Second Window') b1. support. driver. May 5, 2014 · What I am trying to achieve is an AngularJS directive that when it gets focus will show a number of buttons/UI elements. I have tried click, clickAt, doubleClick, mouseOver/click/mouseOUt, mouseDown/mouseUp, focus, fireEvent all without luck. I want the code to read the text in the txt file and send it to the search box and press enter to run it. Thanks for that. It defeats the purpose of the test which should be to reproduce as close a possible the behavior of a user. Either use the LostKeyboardFocus event or shift focus to another element (which shifts logical focus along with it) before clearing keyboard focus. Provide details and share your research! But avoid …. Nov 21, 2018 · The focus pseudo-class allows you to select the element that has focus -- the one with the blinking cursor to type into. removeAttribute('disabled')"); P. – Jun 27, 2020 · はじめにSeleniumで要素をクリックするとフォーカスが移るものだと思っていました。挙動を監視していると、どうもそうではないように思える事が多々あります。そこで確実にフォーカスを移す方法を考… Jul 24, 2014 · From the Selenium documentation: activeElement() Switches to the element that currently has focus within the document currently "switched to", or the body element if this cannot be detected. Just have a couple of suggestions - It is fine to check for opacity, visibility and display for all the parent nodes for the element in question as these when set on parent can hide the element as well, however the dimensions can be checked for the element itself only. focus(); } but it didn't work. Dec 28, 2012 · We've solved a lot of our focus issues by sending a blank key to the element so it gets focused. ExecuteScript("document. sleep(1000) ] and then use selenium. So scenario is main window->popup Dec 7, 2020 · from selenium. Execute, notice that the script did NOT type the above letters. parentNode. Apr 16, 2010 · I want to execute a piece of javascript that will clear the focus from whatever element it is on without knowing ahead of time which element the focus is on. Potentially destructive as it can remove multiple elements. This will cause a post-back if the content of the textbox has changed. cssSelector("element_cssSelector")). Its an issue or something as so many time i have trouble with Actions class in Firefox browser. 1. So you don't have to test whether element is set to a sensible value. In my tests I have a number of modals and dropdowns which open and automatically have focus set on their input boxes. size Apr 7, 2023 · Learn about the HTMLElement. If you need to remove the focus from the currently active element without selecting it, call the blur method on the activeElement property - document Oct 7, 2020 · How can I get Selenium to "silently" focus on a new tab (or window etc) so I can do something while my code runs? This is sort of like the issue reported here: How can I bring Chrome browser to focus when running a Selenium test using ChromeDriver on Mac?, except I want to create the unfocused behavior that that user is trying to change. */ void clear (); It runs "unfocusing events" Somebody really wants this and wants even more events to be fired after clear. If we remove this division while doing inspect element from a browser all other elements are automatically enabled for use. . sendKeys(2);});}); Both the element. focus_force() is impolite. TAB)` method:You can use the `sendKeys()` method to simulate pressing the "Tab" key, which can move the focus to the next element on the page. This is great except that what is annoying is th Aug 23, 2015 · driver = webdriver. Selenium allows you to perform a variety of actions on web elements. So, I want to remove the elements with no text from the comparision. Then, you will see more elements inside the input element, or other element. Here's how you can do it using both methods:Using `sendKeys(Keys. 0. text print element. I did use Actions class there to get the focus. Thanks Oct 6, 2015 · element = driver. blur(). executeScript ("document. Giving the following command will set the focus to nothing: Mar 30, 2017 · I have a scenario in selenium where I have a web element which is available on the page but to reach out to that web element sometimes we have to scroll down depending upon some business logic. btn-success'). Avoid depending on dynamic attributes (like randomly generated IDs) and focus on more stable identifiers such as text, partial attributes, and relative positions in the DOM. Right click on the element and apply "Break on > Subtree Modifications. See full list on selenium. Is there a good way to do this? Aug 5, 2019 · I am testing a text field set with setText() but after its execution, the focus is still on the element I wrote in and then the web page doesn’t react (I am trying to trigger an error message with a field that I fill with the string “”). May 6, 2021 · the input field gets selected and filled automatically by the website after a few seconds. parent print element. I have seen that it is possible to assert that an element is in focus. Mar 23, 2011 · I have had numerous problems detecting if an element has focus because the browser Selenium is controlling typically does not have the focus within the Operating System, and as such the browser will NOT consider any elements to have focus until the browser regains the focus. Mar 26, 2024 · Learn how to handle Selenium focus element issues with multiple iFrames, tabs, onfocus() and onblur() callbacks, and incomplete page loading. In this approach, we use CSS to apply focus styles only when a keyboard is used, ensuring that the focus ring is hidden on mouse click but still accessible for keyboard users. Selenium is not capable of modifying the structure of DOM directly. clear() clear() – clear the value of any text type element. 0) => the input field will be submitted with "new task name" value; new selenium webdriver behavior => the input field will be submitted with "" value and then fail with being unable to set the value to "new task name". Note that real user will not modify HTML DOM to make link enabled, so if you need your script to simulate user-like behavior you should find There's no [element]. As per this screenshot. Remove elements from Selenium’s DOM with waiting Jan 20, 2017 · If the element is there and clickable, you should be able to click it regardless of the disabled class. Nov 26, 2015 · Is there any way by which we can remove a web-element from the the source of the page. I want selenium to wait till it gets selected and then carry on with the further code. activeElement); Could you provide a solution in python please? EDIT: Here's the HTML of the element: I'm using Selenium WebDriver(ChromeDriver). location print element. On this new new I want to test functionality. until(expected_conditions. Firefox() element = firefox. find_element_by_id("text-input-where"). support import expected_conditions as EC References You can find a couple of relevant detailed discussions in: May 29, 2012 · In software testing services this can be achieved by many ways some of the options are displayed above remaining are as follow. clear and the element. Aug 1, 2017 · use JavaScript executor to scroll the element into view and then perform click on the element, chrome driver can't click on the element if that element is not shown on the visible screen. find_element_by_id('your element id') Clear text in Input or Textarea: If the element is input or textarea, you can directly remove the using clear() function. I have a link on my page, too. e. perform(); Now from this popup while i click on another button it again pops up another popup and again I tried with action class but unable to set focus on the new pop up . focus_force(). switchTo(). firefox = webdriver. removeChild(element); """, element) find_element_by_class_name will raise an exception if the element does not exist. Take for a moment this sample code: I'm trying to use Selenium WebDriver to input text to a GWT input element that has default text, "Enter User ID". However, method w. I tried to check if one list is inside the other, and that kind of worked. I remove focus of the activeElement when the user switches a tab. Method 4: Modifying Parent’s InnerHTML. The onblur Event. move_to_element(element) action. Can remove complex elements effectively. find_element_by_id('pat') == self. Feb 9, 2018 · Cannot maintain focus on element in Selenium Python driver. then(() => {return element. find_element_by_css_selector("this element css selector here") attributeValue = element. Using the ng-focus and ng-blur directives this is easily achieved however when I try to click any of the buttons, the button gains focus so the div no longer has focus, ng-blur is triggered and the buttons are hidden. Firefox(executable_path=driver_path) action = webdriver. className("qx-window")); Actions actions = new Actions(wd); actions. from selenium import webdriver webdriver. find_element_by_id("name") wait. cssSelector("div May 21, 2017 · Calling a library present in the page is a bad practice in user acceptance tests. Jun 8, 2011 · if my understanding of your question is correct, you wanted to display different help screens for differnt elements, o. Once you do that, the overlay disappears and you can click as normal. This works manually, but I can't seem to figure out how to do it programmatically. i. Highlighting element under focus using selenium. Enroll and become a certified expert to boost your career. ninpz cabkyi hugvie ugw exg hsnzj sxxoaxyf xmlwut krpsh bzjult
{"Title":"What is the best girl name?","Description":"Wheel of girl names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}