Why does it show warning sign on Firestore Reference? - firebase

I'm trying to make a reference to a document in Firestore. However, once I enter the path to the document, a warning symbol appears. Is there something I'm missing?

Your field looks correct. The warning symbol seems to be a visual bug, I witness it too sometimes.

Related

How to locate the method using an error message string?

I would like to know where is this error code located in the AOT. Would like to know the path to understand the structure and develop custom code.
Transaction has been selected, for settlement, although settlement type: none was selected
I generally use one of two methods to locate message strings.
Provided the cross reference is updated (it should be in dev) use the "Label editor" to to search for then string, see this answer.
Put a breakpoint in top of info.add method, disable CIL if needed, then rerun to get the error message invoking the debugger, see this answer.

Ruby/Selenium/Watir-Webdriver: "path is not absolute" error for absolute path

document_name ='TestDoc'
document_path = ("/Users/Me/QA/Project/Documents/#{document_name}")
File.new ("/Users/Me/QA/Project/Documents/#{document_name}") # => File is created
filename_field.send_keys("#{document_path}")
filename_field.send_keys :tab # => To Trigger event but where error occurs
filename_field = browser.file_field(:name, 'file') declared in a module elsewhere.
As far as I can tell, I have provided an absolute path for the filename to upload the file but when the tab key is sent, an error occurs of:
Selenium::WebDriver::Error::UnknownError: unknown error: path is not absolute:
With an odd squiggly symbol in RubyMine that I've never seen before. Any ideas?
Update:
I added
puts filename_field.value
# => C:\fakepath\TestDoc
Spoke to one of the developers and she said "Browser does it to fake things out, so the filesystem isn't exposed". Not sure if that helps solve my issue or I'm SOL?
That error comes from Chromedriver, and comes from sending an incorrect path string to a file element. Since :tab is not a path, it is correctly raising an error.
You shouldn't need to send a tab; just sending the path of the file should accomplish what you need.
I see many small strange things in your code.
Why
document_path = ("/Users/Me/QA/Project/Documents/#{document_name}")
Not
document_path = "/Users/Me/QA/Project/Documents/#{document_name}"
Why
filename_field.send_keys("#{document_path}")
Not
filename_field.send_keys(document_path)
But the main question is why you are using send_keys instead of set?
I failed to reproduce your problem. Maybe it will be possible if you will provide your html. But i suggest you to try:
filename_field.set(document_path)
Because you can easily check it even with irb send_keys is acting differently in firefox and in chrome for example. So maybe problem with it.
Another suggestion
That is a much more weak idea. But...
Try to clear value before changing it. You can do it with javascript:
b.execute_script("arguments[0].value=''", field)
I had the same issue with Chromedriver 2.26.436421 and it was solved when I removed the code which was sending the tab key.
With previous Chromedriver sending tab key was required to trigger the change event on the file input but with latest one it seems like it is only causing issues and the change event gets triggered without it.

RStudio errors: "In .HTMLsearch(query) : Unrecognized search field:"

The following errors pop up whenever I use the search box in the Help tab - but notably only when the search does not match any functions in any loaded packages. Furthermore, the errors do not show until I enter something else in the R Console. So for example I type xxxxxx or cbinddd in the Help search box, and press Enter. The search might yield some approximate results or not. But no error. Then I enter anything into the Console, say, print("x") or whatever, and these show up, always all three:
Warning messages:
1: In .HTMLsearch(query) : Unrecognized search field: title
2: In .HTMLsearch(query) : Unrecognized search field: keyword
3: In .HTMLsearch(query) : Unrecognized search field: alias
It started back when RStudio had a bug where help would open in browser by default (Q&A), but the next update fixed that. The 'Search Results' page would not show initially, but updating R itself fixed that too; but now I have these weird "delayed" errors. I tried reinstalling R and RStudio, changing the help options in .Rprofile.site, tried setting options("help_type" = "text") and to NULL, nothing seems to help. Note that entering ?xxxxx and ??xxxxx do not produce these errors.
Seems like an uncommon problem, since googling the error or parts of it yields no useful results. How do I fix it?
Update: I have R 3.2.2 and RStudio 0.99.486, running on 64bit Windows 8.1, if that helps.
Update 2: The .Rprofile file is not the culprit.
Updade 3: The error is due to a bug in RStudio, which will hopefully be fixed at some point (cf. comments for details). As such, this question does no longer need an answer. -> Answered it, since this page still gets hits.
Since this QA still comes up as the no. 1 match for the query "In .HTMLsearch(query) : Unrecognized search field:" in Google, I'm just going to leave this here: apparently (as of July 2016, v0.99.902 ), this behaviour, bug or not, still occurs, when you press enter in the Search field to string that does not immediately get an automatic match. Search works, but when you press Enter the next time in the Console, then those warnings appear. According to RStudio support they are working on it (or at least were). So the answer is, there's nothing you can do about it until they fix/change it (but it's really a minor inconvenience that does not affect your code, just the IDE usage).
This behaviour can be caused by a search you did previously (even in a previous session) that doesn't get a match. In my case, it occurred because I was looking (in RStudio Help) for a function in a library that was loaded in the previous session, but isn't loaded when I started this session. If it annoys you, just click the home button in the search window of RStudio.

Either 'GDI', 'WPF' or 'SILVERLIGHT' must be defined how to remove this error?

I have been working on a project in Visual Studio, C# language and I found an error described above. How can I remove this error?
"Either 'GDI', 'WPF' or 'SILVERLIGHT' must be defined"
Open the project properties for the project that throws the error (Alt+Enter in VS Solution Explorer), go to the Build tab and enter the symbol you want into the "Conditional compilation symbols" field. Enter one of the three values.
It seems the value got lost. I cannot tell you which value got lost. Check one of the other PDFsharp projects (I hope not all projects lost their symbols).

Is there a way to copy/paste error or warning messages from Xcode 4?

Say I've got some compiler errors in Xcode. Say I want to ask about those errors on Stack Overflow.
How should I do that? Do I have to read the warning message and type?
So many people ask about the exact error with no misspelling; I bet there is a way to copy and paste those errors. What is it?
I think you can how:
1) Cmd + 4. For Open a Issue Navigator
2) Click on "By Type" for sort by warning and error issues
3) Then finding your error, then Right click and Copy
4) Your error message in your clipboard and you can paste this at anywhere
Hope this help to you
Press cmd+7 to get to the Log navigator, select the last build log, find your error message, right click and copy.

Resources