cannot edit in Realm Browser - edit

I've read a few answers that say it's possible to edit database with Realm Browser but I can't.
I've got a base with two tables : category and specimen. The padlock top right is open. I can click on a new line, add text in fields or change text of existing fields. I go from one table to the other and back and the changes have been ignored.
I've clicked on add new object.
What am I missing?
thanks for any guidance

Are you hitting 'return' when you've finished editing a field? Additionally, there's a new test version of the Realm Browser available on its GitHub page: https://github.com/realm/realm-browser-osx/releases/tag/0.98.3
There were some issues with text fields ignoring input commands in OS X El Capitan, but that should be resolved on the App Store version of the Browser.
In any case, please try the latest version of the Browser with those instructions, and let me know how you go!

Related

Can't find language option on TYPO3 10.4

Recently we decided to upgrade our site from TYPO3 9.5 to TYPO3 10.4. We installed a fresh TYPO3 installation. But after installation when I am trying to set language option, I cannot find it under web > list. See the attached images. Can anyone please let me know if I am missing something?
Thanks in advance.
Regards
Prasun
Because I struggled for a couple of hours too:
A language for a typo3 site can be added by going to the List of database records on the left hand site.
Then select the site (Item called either veniceXplorer or New Typo3 site according to the screenshots in the question).
A + Icon with tooltip Create new record is in the middle at the top. Click on it.
New Record view appears. Under System Records there is an entry Website Language. Click on it.
Now a view Create New Website Language on root level appears. Type a name, select the language and a flag for it.
When done, press Save.
Now go to Sites on the left hand site
Press edit icon at your site
For each language put something meaningful into locale box
When done press Save
Now for your paragraphs you can select the new language.

Internet Explorer 11 Browser session becoming corrupt

I'm having an issue with a random set of users running Windows 10 and IE11. When the issue occurs the user are in an IE 11 browser session and will see among other things that selected div sections will scroll text but the textboxes and dropdowns will remain static within that div.
The current fix is to start a new browser session not just a new window. Currently this only occurring in about 15-20 out of 700 users. Pages are running with doc mode Edge and user agent default.
I realize this is a rather sparse explanation but that is what I have so far. Does anyone have a suggestion as to what could be causing the issue or a tool that would allow further investigation into the browser session?
From your description, I assume that this issue is not related with website and issue is with IE browser.
I suggest you to check for latest Windows and IE related updates. If any new updates are available than try to install new updates and again check for the issue.
If no any new updates available than try to reset the Internet Explorer browser to check whether it fix the issue or not.
If issue persist than you can try to unchecked the Internet Explorer option from Turn Windows features on or off and again try to check that option to add the IE again.
Let us know about your testing results. If issue persist than we can try to provide further suggestions.

Robot Framework - Selenium2Library - Chrome & Edge open new tab instead of window

Sorry if this is a mundane question.
My issue is that the user can click on the "Help" button, which by default will open in a new tab, the help page.
When firing the test in Firefox, it creates a new window. Which is great as I can use the Select Window keyword and give it the URL. However, with Chrome and Edge, it just makes a new tab.
I read that Tabs aren't supported - But the weird part is, the test on Edge passes fine, it is just Chrome which is having the problem. Is there a reason behind that?
Is there a way to force it to be a Window and not a Tab? Or something?
I read that I can input a keyboard shortcut of CTRL + Tab. But that feels really dirty and would prefer a better way of doing it.
Error:
ValueError: Unable to locate window with URL 'http://...
EDIT
OK - So instead of using the URL param, I tried the title instead. Just on a whim. And it worked (?) I have no idea how it worked and why using the URL didnt and the title did: Here are the lines I used:
Run Keyword If '${Browser}' == 'Chrome'
... Select Window 1.7.1 User Guide
... ELSE
... Select Window 1.7.1 User Guide - Welcome to the User Guide
Still though, both the "Gets" did not produce a link to the newly created tab / window though :/ - Many thanks to shicky and Helio!
Are tabs not handled largely the same as windows? You should be able to identify what is on the screen as #Helio says by using one of the following:
Get Window Identifiers
Get Window Names
Here are some similar questions that should help you get started, post back here with some further detail if you need more help.
How to get the current URL in Robot framework?
How to make chrome display on the top opened in selenium [Mac OS X]

itunesconnect - 'New Version' button not available

How to add a new version of the app in iTunesConnect ? The button is not available, please see the below screenshot.
I found a link to tour where it is given that you can add a new version using the button + Version or Platform as shown below. But, this button is disabled for me.
You can't create a new version if you already have a 'developer rejected' version. I suspect you can't create a new version either when you have one 'Ready for Sale' as in the original posting. You can however upload a new build, which is probably what you want to do anyway. Go to the page for the app in iTunes Connect, hover over the Build, click the red bar to delete it (this latter option is what I had missed myself). Now you can upload a new build from XCode (or use one you uploaded already) and add it to this version.
As Apple has no solution, then we will force add new versiĆ³n, this work for me:
From the iTunes connect page for the app version you wish to create a new version:
Should be use Chrome developer tools or firefox inspector.
Select the source for the page and open the find dialog (CTRL+F).
Search for "platform in newVersionPlatformList".
This will show the enclosing "li" of the button (iOS or tvOS). Find all childs "a" tags, which should look something like this: iOS
Must remove class "ng-hide" of "a" tags and this will show another (iOS or tvOS) button in browser.
- In the browser, must try to click on the new buttons (iOS or tvOS) and this will show popup the dialog of new version number.
Enter new version number
"(+) VERSION OR PLATFORM" botton is showing?
Which browser you are using? Use Safari.
If there is an update on the contract / license agreement, you have to review and approve.
I had to contact Apple to resolve this problem. It was an issue with iTunesConnect.

Selenium cannot click tab in magento module detail page

I'm trying to validate data using selenium version 1.0.9 in magento grid and its detail page.
First, I walked through Selenium IDE from login page to module detail page and click the tabs available there. Eventually, IDE generates PHP codes so I put the code into proper location.
Note: Here, I have clicked the two tabs so that the events get recorded into selenium IDE.
Then, I run the code from command prompt using following command:
phpunit --configuration /var/www/tests/phpunit_test.xml
I got the error (something like):
ERROR: Element //a[#id='test_tabs_form_section']/span not found.
I modified the code and tried to open the detail page before executing click to above link i.e. "test_tabs_form_section", I am getting same error.
Another strange this is if I verify any text of detail page and remove the code that calls click to module detail tabs, it is works, not sure why?
But I really want to open detail page and click to tab, get forms element values using xpath and validate the data.
Can somebody help me, please?
Any help or suggestion is highly appreciable!
Looking forward to hear from stackoverflow geeks!
Thanks
In case this helps anybody:
I found out more things work if firebug is active. This actually makes sense cause firebug will show the final DOM tree in all it's debugging screens, so it's possible selenium is now able to reconstruct the element path because firebug altered the internal DOM.
If something doesn't work with the default element selection created by Selenium IDE, try switching it over to xpath:id-relative. You're already using that in your question, so maybe you there's an even better selector or you will need to resort to using clickAt instead of click.