Cesium pages in google search

1. A concise explanation of the problem you're experiencing.
When I searching my site in Google, description looks like WebGL error:
"
Error constructing CesiumWidget. Visit http://get.webgl.org to verify that your web browser and hardware support WebGL. Consider trying a different web browser or updating your video drivers. Detailed error information is below: RuntimeError: The browser does not support WebGL. Visit http://get.webgl.org. Error at new t ..."

Looks like Google search bot not supporting WebGL. How I can fix it?

2. A minimal code example. If you've found a bug, this helps us reproduce and repair it.

3. Context. Why do you need to do this? We might know a better way to accomplish your goal.
Need for better indexing my site in google search.

4. The Cesium version you're using, your operating system and browser.

This is out of the scope of Cesium, and I’m not a search optimization expert. But setting your page’s meta description tag should help.

You could use lynx to test your setup. As a text based browser it
comes close to what the googlebot sees.

https://lynx.invisible-island.net/

You can also go into Google webmaster tools. there is an option to let
you classify content with what google pulls. Even on a wordpress site,
google is VERY VERY stupid. :slight_smile: With that you will then also help the
Neural Networks that rely on human classification, to detect Cesium
Sites correctly.

Then you can maybe patch Cesium to check for referrer and throw out a
different error for the various bots

in Cesium.js/CesiumWidget.js You can change the error to "My site is
fantastic and the most important in the whole wide world :slight_smile: There are
even little green people on Gliese 581c talking about it "

} catch (error) {
if (showRenderLoopErrors) {
var title = 'Error constructing CesiumWidget.';
var message = 'Visit <a
href="http://get.webgl.org">http://get.webgl.org</a> to verify that
your web browser and hardware support WebGL. Consider trying a
different web browser or updating your video drivers. Detailed error
information is below:';
this.showErrorPanel(title, message, error);
}
throw error;
}