Keikai having black screen after upgrade - spreadsheet

I have been trying out keikai spreadsheet for a while, however after upgrading to beta 16 it shows up only black screen, can anyone help?

Please open chrome developer tool (F12) / Console tab to check of there is an error message like:
TypeError: 1.25: type 'minified:E6' is not a subtype of type 'int'
Please also check your screen display setting or browser zoom, if you set them other than 100%. Keikai can't render itself correctly.
But this bug was fixed, please upgrade to 1.0.0-beta.19.

Related

Selenium - Element not visible when the browser set to mobile responsive mode

I am testing the browser for mobile responsiveness. I changed the browser window size to iPhone 5 which is 320 x 568 using this command
driver.Manage().Window.Size = new Size(320, 568);
When I run the test, the browser opens fine according to the mentioned size without any issue. But it fails to find a hyperlink text which is displayed on the page. I get Element not visible exception when I could actually see the link text on the screen. So, could anyone help me solve this issue or have any ideas that I could try?
Any help would be highly appreciated.
Thanks.
Perhaps it's due to the time delay, that means code executes even before the link appears, So write the following code in your language
Code from Ruby Selenium-binding
wait = Selenium::WebDriver::Wait.new(timeout: 10) # seconds
wait.until { driver.find_element(id: "foo").displayed? }
driver.find_element(id: "foo").click
Try to scroll to the element.
You could use java script to do that.
In Python this can be done via
WebDriver.execute_script("arguments[0].scrollIntoView();", elem)
Some elements of the DOM of the webpage change when you test for mobile responsiveness, so selenium is unable to locate the element that you are specifically trying to target.So, you should try to debug and find the methods where the code is failing to perform the action.Then you should find the locators for those elements in "mobile responsiveness view" and trigger only those methods when you are testing for mobile.

Passbook is not opening in Safari

I'm currently developing backend for pass generation. I have created sample pass using all guidelines but it doesn't open up on Iphone. Is there any way to debug a problem, cause right now Safari is just showing message - "Safari could not download file".
Here is a link with sample pass:
"https://distributor-test.azurewebsites.net/api/v1/pass"
Thanks for any advance!
According to the errors logged in the console, you have more than one field with an ID of "front-primary". Each field must have a unique ID. Fix the names of the field and try again.
If you have a Mac, you can open the output from an iPhone using XCode or the syslog. This helps pinpoint issues with passes.

Application Validation gives an error

Im redy to upload an ios app to apstore. Im using xcode 5. After archiving when I try to validate the archive it gives this error. Please tell me how to solve this
This is the error that Im getting
And this how I set the background modes for audion in my info.plist file
Please help me...
Thanks
Please refer to this link,
https://developer.apple.com/library/ios/documentation/general/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW22
This contain information about different background modes keys.
Also you already included the audio playing mode in the first line, which is valid and the last one is not a background mode, so remove that one and it will work.
Also provide 120 by 120 px icon which is recommended.

Unable to add Game Center achievement and leaderboard: Lightbox Save Failure: Failed to takeValuesFromRequest => null

After adding all information (Language, Title, Pre-earned Description, Earned Description, Image) for a Language in iTunes connect for an achievement, and clicking Save, I get this message in a popup
Lightbox Save Failure: Failed to takeValuesFromRequest => null
I am unable to save the Language. Thus unable to add any achievement at all since they need Language.
Anyone got the same issue? Related to the current iOS Dev Center downage?
Thinking this is a browser issue (iTunes connect sometimes just doesn't work well outside of Safari), I also tried Safari as well as the initial Google Chrome. No luck. Same error.
Back this morning, I successfully added a new Leaderboard. I guess the bug might be fixed now.

Safari 6's New Developer Toolbar doesn't show Form Data in XHR/AJAX Requests

Safari recently went to version 6 (Lion/Mtn Lion) and they've changed over from the standard webkit dev tools to one that's much more XCode looking, my problem other than the OCD of not liking things change is that in the resource tab (or anywhere you can track down the DataService.aspx/AJAX calls) I can no longer see the form data that I am passing.
Can anyone point me to where I can find that data so I don't have to console out my params when I'm testing new data service/backend calls?
I've logged a bug with Apple, they've marked it as a duplicate so hopefully they've received enough requests to fix this, until then I'm continuing to use chrome as the webkit developer is the same as safari's old version.
You can find this info in Instrument tab (stop-watch icon). In the left sidebar thers Timelines row, click the grey circle (record button) on the right. Then click to Network Requests where you see all reqs, and you have to click small icon on the right oc request to display response headers and all form data are available in right panel. Panel can be hidden same as left one (in case you dnt see it).
Unfortunately there are no query pamaters listed, according to this disscussion. I belive its a bug in safari
Edit 15.May 2013: This bug was fixed in Safari 6.0.3.
As far as I can tell, there's no way to show the request parameters.
This goes even further. I can't see the JSON response data either (no clickable arrows to show the containing Javascript objects within the JSON, just pure text)
I think we have to switch to Firefox /w Firebug or regular Webkit in order to get XHR monitoring...
Guys if you want to see post data in safari 6 which is not possible right now, install the firebug lite extension and there you go you have the post data.
I used it and it works great with safari 6
Actually the request headers, response headers and query parameters are in the details sidebar on the right when using the resources view or if you click to see the content of a request in the Timelines/Network Requests view. Took me a few minutes to find that too.
If you need to see what the device is actually sending and your server is on a Windows Machine I use http://www.Wireshark.org and check on the server side of things. No interpretation by any WebKit stuff and very valuable (such as issue with iOS and the 'Blob' data). Similar network snooping should exist on Mac as well.